创客百科

姿势共享,有节操无门槛参与的创客百科,创客动力之源 \ (^_^) /

用户工具

站点工具


note:spoony:phpbb-nginx-配置

这是本文档旧的修订版!


A PCRE internal error occured. This might be caused by a faulty plugin

====== phpbb nginx 配置 ====== [code] server { listen 80; server_name phpbb32.example.com; server_name_in_redirect off; root /home/davidyin/phpbb32.example.com; index index.php; location / { try_files $uri $uri/ =404; if (!-e $request_filename) { rewrite ^(.*)$ /app.php; } } location /install/app.php { try_files $uri $uri/ /install/app.php?$query_string; } location /app.php { try_files $uri $uri/ /app.php?$query_string; } location ~ \.php$ { include snippets/fastcgi-php.conf; # With php7-fpm: fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; } } [/code]

本页面的其他翻译:
note/spoony/phpbb-nginx-配置.1529764885.txt.gz · 最后更改: 2018/06/23 22:41 (外部编辑)