Skip to content

Instantly share code, notes, and snippets.

@manojiksula
Forked from fstrube/nginx-magento
Created July 26, 2016 16:42
Show Gist options
  • Save manojiksula/f4e8e136cf7abd55f6abcd1a0ee5a8a6 to your computer and use it in GitHub Desktop.
Save manojiksula/f4e8e136cf7abd55f6abcd1a0ee5a8a6 to your computer and use it in GitHub Desktop.
nginx-magento
server {
listen 80;
root /var/www/magento;
index index.php index.html index.htm;
server_name magento.local;
# Place PHP error logs in the Magento log folder
set $php_log /var/www/magento/var/log/php_errors.log;
# Replaces Apache rewrite rules
location / {
try_files $uri $uri/ @handler;
}
# Protect sensitive folders
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; }
# Protect dotfiles (htaccess, svn, etc.)
location /. { return 404; }
location @handler {
rewrite / /index.php;
}
# Remove trailing slashes from PHP files
location ~ .php/ {
rewrite ^(.*.php)/ $1 last;
}
# Pass PHP to a the PHP-FPM backend
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_param HTTPS $fastcgi_https;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param MAGE_IS_DEVELOPER_MODE on; # Turn on developer mode
#fastcgi_param MAGE_RUN_CODE $mage_run_code;
#fastcgi_param MAGE_RUN_TYPE $mage_run_type;
fastcgi_param PHP_VALUE error_log=$php_log;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment