summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:25:42 -0300
committerYaco <franco@reevo.org>2020-06-04 11:25:42 -0300
commitf718fb949bdebd003b918081e9b94f419a9327ac (patch)
tree180293591e3745bf1a1e6ee62d1cecaab344f5e8 /etc
parentfc7369835258467bf97eb64f184b93691f9a9fd5 (diff)
change root
Diffstat (limited to 'etc')
-rwxr-xr-xetc/nginx/wiki.conf.sample12
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/nginx/wiki.conf.sample b/etc/nginx/wiki.conf.sample
index 210f8686..abfc42c2 100755
--- a/etc/nginx/wiki.conf.sample
+++ b/etc/nginx/wiki.conf.sample
@@ -1,18 +1,18 @@
# ----
# Copyright (C) 2013-2020 - Reevo (http://reevo.org)
# License: Affero GPL version 3 - http://www.gnu.org/licenses/agpl.html
-# ES: Este archivos es parte de: reevo-web (http://git.reevo.org/reevo/reevo-2020)
-# EN: This file is part of: reevo-2020 (http://git.reevo.org/reevo/reevo-2020)
+# ES: Este archivos es parte de: reevo-web (http://git.reevo.org/reevo/reevotech)
+# EN: This file is part of: reevotech (http://git.reevo.org/reevo/reevotech)
# ----
server {
server_name example.org ~^(?<subdomain>.+)\.example\.org$;
- root /srv/reevo-2020/www/wiki;
+ root /srv/reevotech/www/wiki;
index index.php;
- access_log /srv/reevo-2020/log/wiki/nginx.access.log;
- error_log /srv/reevo-2020/log/wiki/nginx.error.log;
+ access_log /srv/reevotech/log/wiki/nginx.access.log;
+ error_log /srv/reevotech/log/wiki/nginx.error.log;
location / {
index index.php;
@@ -36,7 +36,7 @@ server {
location ~ \.php?$ {
include /etc/nginx/fastcgi_params;
- fastcgi_pass unix:/srv/reevo-2020/run/wiki.socket;
+ fastcgi_pass unix:/srv/reevotech/run/wiki.socket;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}