Login page is now the default landing page

This commit is contained in:
WilliamMiceli
2019-12-04 16:06:13 -05:00
parent 85ab536dd1
commit 62486df5fb

View File

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