Cachet/nginx.conf

9 lines
123 B
Nginx Configuration File
Raw Normal View History

2015-02-21 14:11:09 +00:00
location / {
2015-02-21 14:34:09 +00:00
index index.php;
2015-02-21 14:11:09 +00:00
try_files $uri $uri/ /index.php?$query_string;
}
location ~ /\.ht {
deny all;
2015-02-21 14:34:09 +00:00
}