谁能提供一下 Prestashop nginx Conf 文件谢谢
谁能提供一下 Prestashop nginx Conf 文件谢谢用的是 LNMP1.4 和 prestashop_1.7.2.5直接用lnmp 提供的prestashop conf 进入网页后全部空白的
[ 本帖最后由 zhiyi_cai 于 2018-4-6 07:39 编辑 ] 其他没什么特别的配置,lnmp vhost add 添加上域名,官网上有伪静态 http://doc.prestashop.com/display/PS16/System+Administrator+Guide#SystemAdministratorGuide-NginxfriendlyURLs 伪静态规则加上就行吧
空白不清楚原因,可能需要开php错误日志看看
回复 2# 的帖子
您好 军哥。伪静态规则也加了 也没用不知道为什么。我默认安装lnmp 1.4 然后运行是可以进入安装界面的但是prestashop 需要开启Fileinfo.但是开启以后就直接不可以访问 变空白了我尝试重新安装lnmp 3-4次了 现在试试看include/php.sh 直接 --disable-fileinfo 全部删除 然后进行安装 lnmp 1.4看看能不能解决这个问题已经解决空白的问题但是又遇到一个
1: HTTP 504 - error -
504 Gateway Time-out
我开启了PHP错误日志
/usr/local/php/var/log/php_errors.log
但是一个错误都没有
[ 本帖最后由 zhiyi_cai 于 2018-4-6 20:19 编辑 ]
回复 3# 的帖子
504是执行超时回复 4# 的帖子
谢谢,军哥,这个解决了,是因为php版本太高了 我安装了7.0 就可以正常安装,再次感谢 :handshake 试下下面这个配置文件吧。
server {
listen 80;
server_name www.example.com example.com;
root /var/www/www.example.com/web;
if ($http_host != "www.example.com") {
rewrite ^ http://www.example.com$request_uri permanent;
}
index index.php index.html;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
# Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac).
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
rewrite ^/api/?(.*)$ /webservice/dispatcher.php?url=$1 last;
rewrite ^/()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$1$2$3.jpg last;
rewrite ^/()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$1$2$3$4.jpg last;
rewrite ^/()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$1$2$3$4$5.jpg last;
rewrite ^/()()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg last;
rewrite ^/()()()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg last;
rewrite ^/()()()()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg last;
rewrite ^/()()()()()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg last;
rewrite ^/()()()()()()()()(\-*)?(-+)?/.+\.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg last;
rewrite ^/c/(+)(\-[\.*_a-zA-Z0-9-]*)(-+)?/.+\.jpg$ /img/c/$1$2$3.jpg last;
rewrite ^/c/(+)(-+)?/.+\.jpg$ /img/c/$1$2.jpg last;
rewrite ^/images_ie/?([^/]+)\.(jpe?g|png|gif)$ /js/jquery/plugins/fancybox/images/$1.$2 last;
try_files $uri $uri/ /index.php$is_args$args;
error_page 404 /index.php?controller=404;
location ~* \.(gif)$ {
expires 2592000s;
}
location ~* \.(jpeg|jpg)$ {
expires 2592000s;
}
location ~* \.(png)$ {
expires 2592000s;
}
location ~* \.(css)$ {
expires 604800s;
}
location ~* \.(js|jsonp)$ {
expires 604800s;
}
location ~* \.(js)$ {
expires 604800s;
}
location ~* \.(ico)$ {
expires 31536000s;
}
location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors on;
}
}
页:
[1]