Add files via upload

This commit is contained in:
diegogtus
2022-09-06 09:55:05 -06:00
committed by GitHub
parent bca41f3b54
commit 33c0995f07
4 changed files with 100 additions and 0 deletions

View File

@ -0,0 +1,17 @@
server {
listen 80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}