Last active
November 15, 2018 19:20
-
-
Save wottpal/e5913ed65cd0460fc4617c923d5c89e3 to your computer and use it in GitHub Desktop.
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
####################### | |
####################### | |
# KIRBY-CONFIGURATION # | |
# 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; | |
# cache static assets | |
if ($request_uri ~ \.(jpg|jpeg|png|gif|ico|svg|woff|ttf|woff2|otf|xml|pdf|eot|json)$) { | |
expires 1M; | |
access_log off; | |
add_header Cache-Control "public"; | |
add_header Access-Control-Allow-Origin *; | |
} | |
} | |
# 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