0ac90c5522
External repo: https://github.com/mganguli/RSC Commit: 49199a82045f1d6f231eb477de3dbcd59492e9d9 Change-Id: I9eaec387605a39ba5e4c571026cacb1845938231
50 lines
1.9 KiB
ApacheConf
50 lines
1.9 KiB
ApacheConf
<VirtualHost *:6000>
|
|
# Reserve proxy to podm
|
|
ProxyRequests Off
|
|
|
|
# If needed, change following default pod address https://127.0.0.1:8443/
|
|
# to real podm api in your environment.
|
|
ProxyPass / https://127.0.0.1:8443/
|
|
ProxyPassReverse / https://127.0.0.1:8443/
|
|
|
|
<Proxy *>
|
|
Order Deny,Allow
|
|
Allow from all
|
|
</Proxy>
|
|
|
|
# Ignore ssl certificate check when proxy request to podm
|
|
SSLProxyEngine on
|
|
SSLProxyVerify none
|
|
SSLProxyCheckPeerCN off
|
|
SSLProxyCheckPeerName off
|
|
SSLProxyCheckPeerExpire off
|
|
|
|
# Append http header in request to podm to set up authorization.
|
|
# Default username/password: admin/admin. Please change to fit your specific setting.
|
|
RequestHeader set Authorization 'Basic YWRtaW46YWRtaW4='
|
|
RequestHeader set User-Agent 'Mozilla/5.0 (Windows NT 6.1; Win64; x64)'
|
|
|
|
# Append http header in response to enable CORS
|
|
Header set Access-Control-Allow-Origin "*"
|
|
Header set Access-Control-Allow-Methods "GET, POST, PUT, OPTIONS"
|
|
Header set Access-Control-Allow-Headers "Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token"
|
|
|
|
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
|
|
# error, crit, alert, emerg.
|
|
# It is also possible to configure the loglevel for particular
|
|
# modules, e.g.
|
|
#LogLevel info ssl:warn
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
# For most configuration files from conf-available/, which are
|
|
# enabled or disabled at a global level, it is possible to
|
|
# include a line for only one particular virtual host. For example the
|
|
# following line enables the CGI configuration for this host only
|
|
# after it has been globally disabled with "a2disconf".
|
|
#Include conf-available/serve-cgi-bin.conf
|
|
</VirtualHost>
|
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|