Merge retry.

This commit is contained in:
2018-09-10 20:27:19 -03:00
parent 2f442be010
commit 4a50fbe7bb
14 changed files with 691 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}