server {
listen 80;
server_name how2video.org www.how2video.org;
root /var/www/how2video.org;
index index.php;
client_max_body_size 100M;
location / { try_files $uri $uri/ /index.php?$args; }
include snippets/wordpress-security.conf;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php8.1-fpm.sock;
}
}