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
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2016-03-03 01:17:36 +0300
committerChaoyi Zha <summermontreal@gmail.com>2016-03-03 01:17:36 +0300
commit75078ddafd12eff591ab8d0be47c2b015bedc651 (patch)
tree3cf468858f61f81d8e2917118236335b9b906877
parent22bae931f7ba5a3706b678b63dccee8b289fd58c (diff)
Remove incorrect comments
-rw-r--r--docs/user-guide/installation.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md
index 14184ad..fdc516c 100644
--- a/docs/user-guide/installation.md
+++ b/docs/user-guide/installation.md
@@ -45,15 +45,16 @@ php composer.phar install --no-dev -o
To run Polr on Apache, you will need to add a virtual host to your
`httpd-vhosts.conf` like so:
-Replace `example.com` with your server's external address.
+Replace `example.com` with your server's external address.
```apache
<VirtualHost *:80>
- ServerName example.com # Your external address
- ServerAlias example.com # Make this the same as ServerName
+ ServerName example.com
+ ServerAlias example.com
+
DocumentRoot "/var/www/polr/public"
<Directory "/var/www/polr/public">
- Require all granted # Used by Apache 2.4
+ Require all granted
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny