mirror of
https://github.com/aleleba/KubernetesClassAkademik.git
synced 2025-06-29 10:28:24 -06:00
Add files via upload
This commit is contained in:
17
Clase 1/DiegoDominguez/default
Normal file
17
Clase 1/DiegoDominguez/default
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user