11 lines
283 B
Text
11 lines
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;
|
||
|
}
|
||
|
}
|