17 lines
454 B
Plaintext
17 lines
454 B
Plaintext
<VirtualHost *:8888>
|
|
ProxyPreserveHost On
|
|
|
|
# Servers to proxy the connection, or;
|
|
# List of application servers:
|
|
# Usage:
|
|
# ProxyPass / http://[IP Addr.]:[port]/
|
|
# ProxyPassReverse / http://[IP Addr.]:[port]/
|
|
# Example:
|
|
ProxyPass / http://localhost:8000/app/
|
|
ProxyPassReverse / http://localhost:8000/app/
|
|
|
|
ProxyPass /surveil http://surveil:8080/
|
|
ProxyPassReverse /surveil http://surveil:8080/
|
|
|
|
</VirtualHost>
|