KubernetesClassAkademik/Clase 1/DiegoDominguez/default

17 lines
330 B
Plaintext
Raw Normal View History

2022-09-06 09:55:05 -06:00
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;
}
}