gamesshop/deploy/nginx-file

11 lines
283 B
Text
Raw Normal View History

2024-06-30 12:41:33 +00:00
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html/public;
location / {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
}
}