Binternet/nginx.conf

12 lines
234 B
Nginx Configuration File
Raw Permalink Normal View History

2023-05-20 09:52:09 +00:00
server {
listen 8009;
root /var/www/html/binternet;
2023-05-20 09:52:09 +00:00
index index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
2023-05-20 09:52:09 +00:00
}
}