有谁知道如何在nginx服务器的配置文件中配置服务器{}? 我有以下类似的内容:
server {
server_name local.com;
root some_path;
index index.php;
#location / {
#try_files $uri $uri/ index.php;
#proxy_pass http://127.0.0.1:9000;
#}
# set a nice expire for assets
#location ~* "^.+\.(jpe?g|gif|css|png|js|ico|pdf|zip|tar|t?gz|mp3|wav|swf)$" {
# expires max;
# add_header Cache-Control public;
#}
# the downloader has its own index.php that needs to be used
#location ~* ^(/downloader|/js|/404|/report)(.*) {
# include fastcgi_params;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$1/index.php$1;
# fastcgi_read_timeout 600;
# fastcgi_pass 127.0.0.1:9000;
#}
location ~* \.php {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_read_timeout 18000;
fastcgi_pass 127.0.0.1:9000;
}
#location ~* ^(/index.php)?(.*) {
# include fastcgi_params;
# fastcgi_param SCRIPT_FILENAME $document_root/index.php$1;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_read_timeout 18000;
#}
}
浏览器返回空白页面并且不执行php ...
编辑:
在花了一些时间使用nginx配置和php之后,我最终得到的网站在某些情况下可以正常加载而在某些情况下没有......
例: 我有两个相同的页面,但出于某种原因,首先是加载一个魅力,第二个是部分加载......
有时页面加载了一半......
Nginx没有记录任何内容......
由于某些原因,当我尝试去后端时,nginx使用后端url加载前端:/
有人能为我提供其他magento 1.8配置吗?
答案 0 :(得分:1)
在index
指令之后(实际上它无关紧要,只是为了易读性)添加try_files指令。
try_files $uri $uri/ /index.php;
我偶然写了一篇更全面的指南:Configuring nginx for Magento
答案 1 :(得分:0)
好吧,这不是内存或数据库问题,它是...... IonCube问题......我正在调试核心类,发现脚本在Enteprise Modules上停止了......如果你没有安装IonCube它只需显示空白页面。
但是,现在Magento返回404:找不到页面......
Thx,伙计们寻求帮助,如果你对第二个问题有一些建议可以免费发布在这里:)
应用一点修复后:
/* Store or website code */
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE'] : '';
/* Run store or run website */
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'store';
Mage::run('', 'store'); //<-this
//Mage::run($mageRunCode, $mageRunType);
正面和背面正在加载,但控制器存在问题......但不会很长时间!
A如果我输入url / admin nginx将返回未找到的输入文件,但是当我输入index.php / admin时,它会加载... part。这是重写和服务器变量的问题。
编辑:
我赢了! iconv没有安装......现在一切正常,除了重写......
内容: 我需要找到一种方法来正确获取index.php文件的服务器var并将index.php重写为/
寻求帮助!
答案 2 :(得分:0)
在回答有关MAGE_RUN_CODE的后一个问题时,您可以使用nginx地图来完成。请参阅:Coeus Blue Blog Post