diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2013-09-06 14:44:11 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-09-06 14:44:11 -0400 |
commit | 9e8b2c4ecb82e85e7223c94d64dd4a3f61fb9717 (patch) | |
tree | b6f224122a664036a9f487f7b9f356b2150c3fd6 | |
parent | 9bf65aa2427eee7cc9d80de455021d97cf68e648 (diff) | |
download | ikiwiki-9e8b2c4ecb82e85e7223c94d64dd4a3f61fb9717.tar ikiwiki-9e8b2c4ecb82e85e7223c94d64dd4a3f61fb9717.tar.gz |
remove instances from an old doc
-rw-r--r-- | doc/tips/distributed_wikis.mdwn | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/tips/distributed_wikis.mdwn b/doc/tips/distributed_wikis.mdwn index 75a2368b1..29273ada1 100644 --- a/doc/tips/distributed_wikis.mdwn +++ b/doc/tips/distributed_wikis.mdwn @@ -101,9 +101,9 @@ Note that this will also configure CGI so that people can edit the wiki. Note th #### Apache configuration <VirtualHost *:80> - ServerName reseaulibre.example.com:80 - DocumentRoot /var/www/reseaulibre.example.com - <Directory /var/www/reseaulibre.example.com> + ServerName mirror.example.com:80 + DocumentRoot /var/www/mirror.example.com + <Directory /var/www/mirror.example.com> Options Indexes MultiViews ExecCGI AllowOverride None Order allow,deny @@ -116,9 +116,9 @@ Note that this will also configure CGI so that people can edit the wiki. Note th #### Nginx configuration server { - root /var/www/reseaulibre.example.com/; + root /var/www/mirror.example.com/; index index.html index.htm; - server_name reseaulibre.example.com; + server_name mirror.example.com; location / { try_files $uri $uri/ /index.html; @@ -127,7 +127,7 @@ Note that this will also configure CGI so that people can edit the wiki. Note th fastcgi_pass unix:/tmp/fcgi.socket; fastcgi_index ikiwiki.cgi; fastcgi_param SCRIPT_FILENAME /var/www/ikiwiki.cgi; - fastcgi_param DOCUMENT_ROOT /var/www/reseaulibre.example.com; + fastcgi_param DOCUMENT_ROOT /var/www/mirror.example.com; include /etc/nginx/fastcgi_params; } } |