Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMohammad Noor <github@mdsalih.com>2017-01-30 19:18:13 +0300
committerGitHub <noreply@github.com>2017-01-30 19:18:13 +0300
commitf8c335262b812e7d5700a0ea9b302cca84be80ad (patch)
tree33a50dd7c121742ecb84d924c73ef93a879e18d7 /docs
parentee48d0346b01959f8fdf118e0e072b35e0b243e7 (diff)
Add index to nginx config
No index set for example nginx config - without this, user will get 403 Forbidden error on browsing to site.
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide/installation.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md
index 2d3818b..0f17cec 100644
--- a/docs/user-guide/installation.md
+++ b/docs/user-guide/installation.md
@@ -122,6 +122,7 @@ server {
location / {
try_files $uri $uri/ /index.php$is_args$args;
# rewrite ^/([a-zA-Z0-9]+)/?$ /index.php?$1;
+ index index.php;
}
location ~ \.php$ {