-
-
Save texnixe/4d94c0660161ba045f83a906354f7802 to your computer and use it in GitHub Desktop.
nginx setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# block content | |
location ~ ^/content/(.*).(txt|md|mdown)$ { | |
rewrite ^/content/(.*).(txt|md|mdown)$ /error redirect; | |
} | |
# block all files in the site folder from being accessed directly | |
location ~ ^/site/(.*)$ { | |
rewrite ^/site/(.*)$ /error redirect; | |
} | |
# block all files in the kirby folder | |
location ~ ^/kirby/(.*)$ { | |
rewrite ^/kirby/(.*)$ /error redirect; | |
} | |
# site links | |
location / { | |
try_files $uri $uri/ /index.php?$uri&$args; | |
} | |
# panel links | |
location /panel { | |
try_files $uri $uri/ /panel/index.php?$uri&$args; | |
} | |
# deny access to .htaccess files | |
location ~ /\.ht { | |
deny all; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment