Updated Setting up Dynamic Map with apache2 under Debian (markdown)

FrozenCow 2011-01-16 05:44:35 -08:00
parent 7e612d98c7
commit 5345e1c7cd
1 changed files with 7 additions and 0 deletions

@ -11,10 +11,17 @@ 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]
</VirtualHost>
<Directory /opt/minecraft_server/tiles>
Order allow,deny
Allow from all
</Directory>
<Proxy http://localhost:8123/*>
Order deny,allow
Allow from all