Created
January 23, 2013 09:38
-
-
Save googya/4603695 to your computer and use it in GitHub Desktop.
设定web的访问路径, 内网以及外网
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 192.168.10.1:82 220.222.222.222:82> | |
| ServerName csco-show.pro-preview.com | |
| DocumentRoot /srv/backend/current/public | |
| Header set Access-Control-Allow-Origin "*" | |
| <Directory /srv/backend/current/public> | |
| Options FollowSymLinks | |
| AllowOverride None | |
| Order allow,deny | |
| Allow from all | |
| </Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment