summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Lindvall2019-12-29 20:21:53 +0100
committerMarius Lindvall2019-12-29 20:21:53 +0100
commit27978115dda8e36fcbdbe9b4c61200455b04170c (patch)
tree759a9edf3ee869ebb21a67bb097964b8f45e4d5d
parent308426e866659a678fdf8f75d5c4fa42a9ed6890 (diff)
downloadaur-27978115dda8e36fcbdbe9b4c61200455b04170c.tar.gz
Fix incorrect paths in sample configs
-rw-r--r--apache-example.conf2
-rw-r--r--nginx-example.conf2
2 files changed, 2 insertions, 2 deletions
diff --git a/apache-example.conf b/apache-example.conf
index 5f99f41dea23..922e30d0a39e 100644
--- a/apache-example.conf
+++ b/apache-example.conf
@@ -2,7 +2,7 @@ NameVirtualHost *:443
<VirtualHost *:443>
ServerName hauk.example.com
- DocumentRoot /usr/share/webapps/hauk-backend
+ DocumentRoot /usr/share/webapps/hauk-server
ErrorLog /var/log/httpd/hauk.error.log
CustomLog /var/log/httpd/hauk.access.log combined
diff --git a/nginx-example.conf b/nginx-example.conf
index 135b9c040f0f..b2a69be7a26d 100644
--- a/nginx-example.conf
+++ b/nginx-example.conf
@@ -27,7 +27,7 @@ server {
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Robots-Tag "noindex, nofollow" always;
- root /usr/share/webapps/hauk-backend;
+ root /usr/share/webapps/hauk-server;
index index.html index.htm index.php;
location / {