updating the searching

This commit is contained in:
Bryan
2019-11-25 13:24:32 -05:00
parent e975293cab
commit 36beca341f
5 changed files with 65 additions and 35 deletions

View File

@@ -3,18 +3,18 @@ server {
listen [::]:80;
root /var/www/;
index index.html
landingPage landingPage.html
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/ /landingPage.html =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
}
}