server {
listen 8082;
server_name localhost;
root /var/www/phpbb;
index index.php index.html;
client_max_body_size 128M;
location / {
try_files $uri $uri/ /app.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}