Last active
September 11, 2015 16:02
-
-
Save libraplanet/0a60da4df9744f848a13 to your computer and use it in GitHub Desktop.
kancolle forward proxy sample
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
Listen xxxx | |
Listen yyyy | |
#------------------------------------------------------------------------------- | |
# simple proxy | |
#------------------------------------------------------------------------------- | |
<VirtualHost *:xxxx> | |
ProxyRequests On | |
ProxyVia Off | |
<Proxy *> | |
Order deny,allow | |
Deny from all | |
#Allow from all | |
Allow from ::1 | |
Allow from 192.168.0.0/16 | |
Allow from 127.0.0.0/8 | |
</Proxy> | |
</VirtualHost> | |
#------------------------------------------------------------------------------- | |
# to MyFreetGirls | |
#------------------------------------------------------------------------------- | |
<VirtualHost *:yyyy> | |
ProxyRequests On | |
ProxyVia Off | |
#ProxyRemote http://203.104.209.71 http://localhost:aaaa | |
#ProxyRemote http://125.6.184.15 http://localhost:aaaa | |
#ProxyRemote http://125.6.184.16 http://localhost:aaaa | |
#ProxyRemote http://125.6.187.205 http://localhost:aaaa | |
#ProxyRemote http://125.6.187.229 http://localhost:aaaa | |
#ProxyRemote http://125.6.187.253 http://localhost:aaaa | |
#ProxyRemote http://125.6.188.25 http://localhost:aaaa | |
#ProxyRemote http://203.104.248.135 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.7 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.39 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.71 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.103 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.135 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.167 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.215 http://localhost:aaaa | |
#ProxyRemote http://125.6.189.247 http://localhost:aaaa | |
#ProxyRemote http://203.104.209.23 http://localhost:aaaa | |
#ProxyRemote http://203.104.209.39 http://localhost:aaaa | |
#ProxyRemote http://203.104.209.55 http://localhost:aaaa | |
#ProxyRemote http://203.104.209.102 http://localhost:aaaa | |
ProxyRemote http:// http://localhost:aaaa | |
<Proxy *> | |
Order deny,allow | |
Deny from all | |
Allow from ::1 | |
Allow from 192.168.0.0/16 | |
Allow from 127.0.0.0/8 | |
</Proxy> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment