Skip to content

Instantly share code, notes, and snippets.

@meongx
Created February 10, 2015 02:11
Show Gist options
  • Select an option

  • Save meongx/48294120c6e513604b64 to your computer and use it in GitHub Desktop.

Select an option

Save meongx/48294120c6e513604b64 to your computer and use it in GitHub Desktop.
Cross Domain Proxy
# 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