docker-image-nginx/nginx.cfg

24 lines
395 B
INI
Raw Normal View History

2023-11-02 12:39:54 +03:00
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index.html index.php;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}