Delete manifest~

This commit is contained in:
youngjin.han 2020-05-13 18:02:20 +02:00
parent c4d7a41bc7
commit 549b45fc4f
1 changed files with 0 additions and 42 deletions

View File

@ -1,42 +0,0 @@
#!/bin/sh -e
nginx_config_dir="/etc/nginx/conf.d"
domain="$__object_id"
__directory /var/www/html/$domain \
--parents --mode 0644
require="__directory//var/www/html/$domain" \
__file /var/www/html/$domain/index.html \
--source - --mode 0644 << EOF
Hello Cdist!!!
EOF
__my_nginx
# configure nginx
require="__my_nginx" \
__file "$nginx_config_dir/${domain}.conf" \
--mode 0644 --source - << EOF
server {
listen 80;
listen [::]:80;
server_name $domain;
access_log /var/log/nginx/access.log;
client_max_body_size 256m;
location / {
root /var/www/html/$domain;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html/$domain;
}
}
EOF