-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
27 lines (22 loc) · 711 Bytes
/
README
File metadata and controls
27 lines (22 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Version 18
Attribution:
------------
The man and woman images are from
http://www.amgmedia.com/
Apache Configuration:
---------------------
active modules:
proxy.conf proxy.load
VirtualHost configuration:
<VirtualHost *:80>
ServerName gamma.conquer-space.net
DocumentRoot /www/cqs-update/
ProxyPass / http://localhost:9292/
ProxyPassReverse / http://localhost:9292/
</VirtualHost>
Of course, the ServerName must be the name of the local virtual host, and the port in the proxy directives must match the port of the running cqs instance.
In some cases, you need to allow Proxy access for localhost:
<Proxy http://localhost:9292/*>
Order allow,deny
Allow from all
</Proxy>