You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cdist-mirror/conf/modules/nginx-website/nginx_config.sh

19 lines
330 B

cat << eof
#
# D-INFK SANS MANAGED FILE
# ========================
#
# Do not change this file. Changes will be overwritten by puppet.
#
server {
# Only bind on the reserved IP address
listen $nginx_website;
server_name $server_name;
location / {
root /home/services/www/$username/$server_name/www;
}
}
eof