Skip to content

Instantly share code, notes, and snippets.

@qrush
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qrush/84829fd3abe149559de0 to your computer and use it in GitHub Desktop.
Save qrush/84829fd3abe149559de0 to your computer and use it in GitHub Desktop.
Run Pow and Apache with Xcode CI bots
<VirtualHost *:80>
Alias /__xcsweb/xcswebxcode /Applications/Server.app/Contents/ServerRoot/usr/share/xcodeserver/web/desktop
Alias /__xcsweb/xcswebbase /Applications/Server.app/Contents/ServerRoot/usr/share/xcodeserver/web/base
Alias /__xcsweb/bigscreen /Applications/Server.app/Contents/ServerRoot/usr/share/xcodeserver/web/bigscreen
ProxyPass /__xcsweb/xcswebxcode !
ProxyPass /__xcsweb/xcswebbase !
ProxyPass /__xcsweb/bigscreen !
ProxyPass /xcs/svc http://localhost:4444/svc
ProxyPassReverse /xcs/svc http://localhost:4444/svc
ProxyPass /xcs/streams/activity http://localhost:4444/streams/activity
ProxyPassReverse /xcs/streams/activity http://localhost:4444/streams/activity
ProxyPass /xcode/files/download http://localhost:4444/files
ProxyPassReverse /xcode/files/download http://localhost:4444/files
ProxyPass /xcs http://localhost:4444/xcs
ProxyPassReverse /xcs http://localhost:4444/xcs
ProxyPass /xcode http://localhost:4444/app-context/xcode
ProxyPassReverse /xcode http://localhost:4444/app-context/xcode
ProxyPreserveHost On
</VirtualHost>
<VirtualHost *:80>
ServerName pow
ServerAlias *.dev
ServerAlias *.xip.io
ProxyPass / http://localhost:20559/
ProxyPassReverse / http://localhost:20559/
ProxyPreserveHost On
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment