diff --git a/Setting-up-Dynamic-Map-with-apache2-under-Debian.md b/Setting-up-Dynamic-Map-with-apache2-under-Debian.md index 6e61206..4686ffc 100644 --- a/Setting-up-Dynamic-Map-with-apache2-under-Debian.md +++ b/Setting-up-Dynamic-Map-with-apache2-under-Debian.md @@ -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] + + Order allow,deny + Allow from all + + Order deny,allow Allow from all