nginxにmagentoストアを追加するような構成があります:
server {
listen 80;
server_name domain.com;
root /www-data/domain.com/www;
access_log /www-data/domain.com/logs/nginx.access.log main;
error_log /www-data/domain.com/logs/nginx.error_log info;
index index.php;
location / {
index index.html index.php;
try_files $uri $uri/ @handler;
}
location /app/ { deny all; }
location /includes/ { deny all; }
location /lib/ { deny all; }
location /media/downloadable/ { deny all; }
location /pkginfo/ { deny all; }
location /report/config.xml { deny all; }
location /var/ { deny all; }
location ~* "^.+\.(jpg|jpeg|gif|css|png|js|ico|pdf|zip|tar|t?gz|mp3|wav|swf)$" {
expires max;
add_header Cache-Control public;
access_log off;
}
location /. {
return 404;
}
location @handler {
rewrite / /index.php;
}
location ~ .php/ {
rewrite ^(.*.php)/ $1 last;
}
location ~ .php$ {
if (!-e $request_filename) { rewrite / /index.php last; }
fastcgi_read_timeout 60;
expires off;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
そして、標準のindex.phpで実行される管理領域の新しい場所セクションを作成する必要がありますが、タイムアウトが長くなります。
/admin/* や /index.php/admin/* などのパスがタイムアウト 600 になるようにする必要があります。
誰かが私を助けて、そのような場所のサンプルを入手できますか?
私が理解しているように、それは次のようなものでなければなりません:
# Magento Admin
location ^~ /index.php/backoffice/ {
if (!-e $request_filename) { rewrite / /index.php last; }
fastcgi_read_timeout 600;
expires off;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
しかし、この構成では Access deniedになっているので、 fastcgi_param SCRIPT_FILENAMEは他の値でなければならないと思います。