Created
February 10, 2015 02:11
-
-
Save meongx/48294120c6e513604b64 to your computer and use it in GitHub Desktop.
Cross Domain Proxy
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
| # Laravel App1 | |
| Listen 81 | |
| NameVirtualHost *:81 | |
| <VirtualHost *:81> | |
| DocumentRoot "D:\0m\src\www\yop\core-optic\public" | |
| <Directory "D:\0m\src\www\yop\core-optic\public"> | |
| Options Indexes FollowSymLinks Includes ExecCGI | |
| AllowOverride All | |
| Require all granted | |
| </Directory> | |
| # Cross Domain Proxy | |
| ProxyRequests Off | |
| <Proxy> | |
| Order deny,allow | |
| Allow from all | |
| </Proxy> | |
| ProxyPass /pelacakan http://pelacakan.net | |
| ProxyPassReverse /pelacakan http://pelacakan.net | |
| </VirtualHost> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment