Using index.html now

This commit is contained in:
WilliamMiceli
2019-11-25 13:48:50 -05:00
parent a2e66af73c
commit bf13e08e76
2 changed files with 2 additions and 23 deletions

View File

@@ -3,14 +3,14 @@ server {
listen [::]:80;
root /var/www/;
index landingPage.html
index index.html
server_name _;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
try_files $uri $uri/ /landingPage.html =404;
try_files $uri $uri/ /index.html =404;
}
location ~ \.php$ {