1

I have been trying to set up magento sites on a local development server using nginx. I have managed to get them partly working. For some reason the homepage will load fine but as soon as I click on any link I get '500 internal server error'. The nginx error logs show:

555 rewrite or internal redirection cycle while processing "/index.php", client: 127.0.0.1, server: mage1.dev, request: "GET /htdocs/admin HTTP/1.1", host: "gb-posters.mage1.dev"

This is my conf file:

server {
listen 80;

autoindex on;
# Add index.php to the list if you are using PHP
index index.html index.php;

server_name *.mage1.dev;
root /var/www/projects/$http_host/;

include include.d/mage1.conf;

}

and this is the mage1.conf file:

location / {
    index index.html index.php; ## Allow a static html file to be shown first
    try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler

}

#location ~*  \.(jpg|jpeg|png|gif|ico|css|js)$ {
#   #expires 365d;
#    try_files $uri @statichandler;
#}

## These locations would be hidden by .htaccess normally
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 /var/export/ { ## Allow admins only to view export folder
    auth_basic           "Restricted"; ## Message shown in login window
    auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword
    autoindex            on;
}

location  /. { ## Disable .htaccess and other hidden files
    return 404;
}

location @statichandler { ## Magento uses a common front handler
    rewrite ^(.*)\.(\d*)\.(jpg|jpeg|png|gif|ico|css|js)$ /$1.$3;
}

location @handler { ## Magento uses a common front handler
    rewrite / /index.php;
}

location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler
    rewrite ^(.*.php)/ $1 last;
}

location ~ .php$ { ## Execute PHP scripts
    if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss
if ($magecode = false) {
    set $magecode "default";
}

if ($magetype = false) {
    set $magetype "store";
}

    expires        off; ## Do not cache dynamic content
    fastcgi_pass   127.0.0.1:9000;
    #fastcgi_param  HTTPS $fastcgi_https;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    fastcgi_param  MAGE_RUN_CODE $magecode; ## Store code is defined in administration > Configuration > Manage Stores
    fastcgi_param  MAGE_RUN_TYPE $magetype;
    include        fastcgi_params; ## See /etc/nginx/fastcgi_params

}
Jagat Dave
  • 103
  • 4
Matt
  • 11
  • 3
  • Do you have any internal redirects? for example: www.domain.com redirects to domain.com or vice versa – Orphans Nov 02 '16 at 14:25
  • Please turn on [debugging in Nginx](http://nginx.org/en/docs/debugging_log.html) to understand what exactly happens. If you can't understand the debugging log, you may post it here for a single request. Warning: It is usually very lengthy! – Pothi Kalimuthu Nov 02 '16 at 15:56

0 Answers0