mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
11 lines
231 B
Nginx Configuration File
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;
|
|
}
|
|
}
|