Created
January 21, 2020 20:35
-
-
Save mdimai666/a73ec74ad77b989f66d3fa012095ae7a to your computer and use it in GitHub Desktop.
This file contains 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 *:88> | |
ServerAdmin [email protected] | |
ServerName vk.localhost | |
ServerAlias vk.localhost | |
ProxyRequests off | |
<Proxy *> | |
Order deny,allow | |
Allow from all | |
</Proxy> | |
<Location /> | |
ProxyPass http://localhost:9002/ | |
ProxyPassReverse http://localhost:9002/ | |
</Location> | |
</VirtualHost> | |
<VirtualHost *:89> | |
ServerName vk.localhost:88 | |
ServerAlias vk.localhost:88 | |
ProxyPreserveHost Off | |
ProxyPass / http://localhost:9002 | |
ProxyPassReverse / http://localhost:9002 | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment