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.
19 lines
330 B
19 lines
330 B
15 years ago
|
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
|