Last active
August 29, 2015 13:57
-
-
Save songlipeng2003/9656618 to your computer and use it in GitHub Desktop.
apache ProxyPass Alias 冲突解决
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName test.com | |
Alias /artemis-image/ "D:\EPD\Trunk\Development\Source\1.0\exam\oldSystem\artemis-image/" | |
<Directory "D:\EPD\Trunk\Development\Source\1.0\exam\oldSystem\artemis-image/"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride all | |
Order allow,deny | |
Allow from all | |
</Directory> | |
ProxyRequests Off | |
ProxyPass /artemis-image ! | |
ProxyPass / http://127.0.0.1:8080/Artemis/ | |
ProxyPassReverse / http://127.0.0.1:8080/Artemis/ | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment