15 lines
294 B
Plaintext
15 lines
294 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
root /var/www/default;
|
|
index index.php index.html index.htm index.nginx-debian.html;
|
|
|
|
server_name sp.renatorosa.com www.sp.renatorosa.com;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
|