在nginx服务部署startbbs_PHP教程
程序员文章站
2024-01-16 14:00:04
...
1. 在ubuntu+nginx部署后出现index.php/install无限重定向的问题。在本地window则无问题。解决方案,在本地安装后将数据库直接还原到服务器,跳过安装流程。
2. 首页打开布局乱了,图片,css ,js所有静态文件 都打不开。以后是nginx配置出错,利用别的已经在运行的配置运行startbbs问题依旧,折腾许久许久,后来才发现不知道为什么页面上都是https而不是http.而用http是可以打开静态文件的。
3. 在app/config/config.php中将config['base_url']由默认的空改为“http://xxx.com”才解决问题。
nginx配置如下:
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /srv/www/forum/public_html;
index index.php index.html index.htm;
server_name xxx.com;
error_log /srv/www/forum/logs/nginx.error.log;
access_log /srv/www/forum/logs/nginx.access.log;
location / {
if (-e $request_filename) {
break;
}
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
#rewrite "^/(.*)$" /index.php last;
}
}
location ~ .+\\.php($|/) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\\.php)(.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
#fastcgi_param PATH_INFO $path_info;
}
}
2. 首页打开布局乱了,图片,css ,js所有静态文件 都打不开。以后是nginx配置出错,利用别的已经在运行的配置运行startbbs问题依旧,折腾许久许久,后来才发现不知道为什么页面上都是https而不是http.而用http是可以打开静态文件的。
3. 在app/config/config.php中将config['base_url']由默认的空改为“http://xxx.com”才解决问题。
nginx配置如下:
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /srv/www/forum/public_html;
index index.php index.html index.htm;
server_name xxx.com;
error_log /srv/www/forum/logs/nginx.error.log;
access_log /srv/www/forum/logs/nginx.access.log;
location / {
if (-e $request_filename) {
break;
}
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
#rewrite "^/(.*)$" /index.php last;
}
}
location ~ .+\\.php($|/) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\\.php)(.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
#fastcgi_param PATH_INFO $path_info;
}
}
startbbs官方主页:http://startbbs.com
推荐阅读
-
在nginx服务部署startbbs_PHP教程
-
在服务器上简单配置flask+uwsgi+nginx(只是可工作~嘿)
-
vue项目打包部署到nginx服务器上
-
SpringBoot项目打包部署到服务器步骤教程
-
FastDFS - Linux下搭建FastDFS 文件服务器与Nginx配置(部署和运维)
-
求助:php项目如何部署在服务器上?
-
kafka安装教程 -- 单节点-单Broker集群:只在一个节点上部署一个Broker
-
Symfony2在Nginx下的配置方法图文教程,symfony2nginx
-
Symfony2在Nginx下的配置方法图文教程,symfony2nginx_PHP教程
-
在Mac OS上搭建Nginx+PHP+MySQL开发环境的教程,_PHP教程