我想尝试使用Subrion CMS,但是我在使用它时遇到了问题。
是否需要Apache mod-rewrite?这需要使用Apache吗? Nginx只能用作Subrion的反向代理吗?
Debian 8 - Nginx - MariaDB - PHP5-FPM - Subrion CMS
安装屏幕显示一切看起来都不错。权限和所有权和非问题。我认为这是一个Nginx重写问题,因为我注意到提交时url将变为“/ install / install /”,但页面仍然与滚动到顶部的页面相同。与此同时,我没有使用CMS,所以没有急于此。
如果您使用Nginx运行Subrion CMS,我将非常感谢您对此情况的看法。谢谢你的阅读。
答案 0 :(得分:0)
是的,Subrion CMS可以在Nginx服务器上运行。以下是适用于nginx的配置:
server {
listen 80; # make sure there is no conflict with apache server listening on port 80
server_name subrion_domain.com; # your website domain name
root /var/www/subrion; # absolute path to your subrion core files
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location /install/ {
rewrite ^/install/(.*)$ /install/index.php?_p=$1;
}
# deny access to apache .htaccess files
location ~ /\.ht
{
deny all;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
}
无论如何,请注意您可能会遇到管理信息中心的问题。您需要更新管理URL,将默认的“admin”仪表板URL更改为任何值,并清除tmp /文件夹。这样可以正常工作。
如果您需要任何帮助,请与我们联系。我很乐意提供帮助。