Updated Setting up Dynamic Map with Apache httpd under Arch Linux (markdown)

FrozenCow 2011-01-16 05:49:00 -08:00
parent b11b1003b8
commit 5a91ac3af5

@ -17,14 +17,15 @@ Next, we must 'redirect' `/dynmap/up/` to dynmap's internal webserver. To do thi
```apache
...
Alias /dynmap/tiles /opt/minecraft_server/tiles
RewriteEngine on
RewriteRule /dynmap/up/(.*) http://localhost:8123/up/$1 [P,L]
<Directory /opt/minecraft_server/tiles>
Order allow,deny
Allow from all
</Directory>
RewriteEngine on
RewriteRule /dynmap/up/(.*) http://localhost:8123/$1 [P,L]
<Proxy http://localhost:8123/*>
Order deny,allow
Allow from all