Skip to content

Instantly share code, notes, and snippets.

@Burick
Created January 24, 2017 20:53
Show Gist options
  • Save Burick/7c60d415872c724b0d1f971bd5536f6c to your computer and use it in GitHub Desktop.
Save Burick/7c60d415872c724b0d1f971bd5536f6c to your computer and use it in GitHub Desktop.
Nginx config REvo
# Своя конфигурация
index index.php;
rewrite_log on;
location /core/ {
deny all;
}
# location / {
# try_files $uri $uri/ @rewrite;
# }
# location @rewrite {
# rewrite ^/(.*)$ /index.php?q=$1;
# }
location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico|bmp)$ {
access_log off;
expires 10d;
break;
}
location ~ /\.ht {
deny all;
}
# ////Своя конфигурация
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment