Binternet/nginx.conf
2023-05-20 11:52:09 +02:00

11 lines
231 B
Nginx Configuration File

server {
listen 8009;
root /var/www/html/pinternet;
index index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php-fpm.sock;
}
}