Add files via upload

This commit is contained in:
diegogtus
2022-09-06 09:54:12 -06:00
committed by GitHub
parent b5628e1a35
commit 827e28f748
4 changed files with 100 additions and 0 deletions

17
DiegoDominguez/default Normal file
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;
}
}