gamesshop/deploy/nginx-file
2024-06-30 14:41:33 +02:00

11 lines
No EOL
283 B
Text

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;
}
}