创客百科

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

用户工具

站点工具


note:spoony:phpbb-nginx-配置

phpbb nginx 配置

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;
 }

}
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 ^(.*)$ /phpBB/app.php;
        }

}

location /install/app.php {
        try_files $uri $uri/ /phpBB/install/app.php?$query_string;
}

location /app.php {
        try_files $uri $uri/ /phpBB/app.php?$query_string;
}


location ~ \.php$ {
 include snippets/fastcgi-php.conf;

# With php7-fpm:
 fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
 }

}
本页面的其他翻译:
note/spoony/phpbb-nginx-配置.txt · 最后更改: 2018/06/23 22:42 由 Spoony