groff-web/nginx.conf
2023-11-13 17:00:11 -06:00

19 lines
274 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name groff.example.org;
root /var/www/groff-web;
index index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
}
}