16 lines
289 B
Plaintext
16 lines
289 B
Plaintext
# Old config:
|
|
server {
|
|
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
root /home/www/werc/werc-1.5.0/sites/nunosempere.com;
|
|
index index.html index.htm index.nginx-debian.html;
|
|
server_name nunosempere.com;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
|