1、打开你的Nginx配置文件(通常位于/etc/nginx/nginx.conf
或/etc/nginx/sitesavailable/default
)。
2、添加一个新的server块来处理IPB论坛的请求:
server { listen 80; server_name yourdomain.com; # 替换为你的域名 root /path/to/ipb; # IPB论坛程序的路径 index index.php; location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include snippets/fastcgiphp.conf; fastcgi_pass unix:/var/run/php/php7.4fpm.sock; # 确保这里的路径与你的PHP版本匹配 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { expires max; log_not_found off; } }
3、保存并关闭配置文件。
4、检查Nginx配置是否正确:
sudo nginx t
5、如果测试没有错误,重新加载Nginx以应用更改:
sudo systemctl reload nginx
6、确保IPB的目录权限正确设置,以便Web服务器可以访问和执行文件。
配置假设你使用的是PHPFPM作为PHP处理器,并且PHP的版本是7.4,如果你使用其他版本的PHP,请相应地调整fastcgi_pass
指令中的路径。