Update apache tls proxy logs
This creates log files per proxy vhost and sets the log level to info to help debug potential issues with tls proxying. Change-Id: I02a62224662b021b35c293909ba045b4b74e1df8
This commit is contained in:
parent
91d8a38e16
commit
66ce5c257a
@ -39,6 +39,7 @@ elif is_suse; then
|
|||||||
APACHE_NAME=apache2
|
APACHE_NAME=apache2
|
||||||
APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/vhosts.d}
|
APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/vhosts.d}
|
||||||
fi
|
fi
|
||||||
|
APACHE_LOG_DIR="/var/log/${APACHE_NAME}"
|
||||||
|
|
||||||
# Functions
|
# Functions
|
||||||
# ---------
|
# ---------
|
||||||
|
5
lib/tls
5
lib/tls
@ -476,6 +476,11 @@ $listen_string
|
|||||||
ProxyPass http://$b_host:$b_port/ retry=5 nocanon
|
ProxyPass http://$b_host:$b_port/ retry=5 nocanon
|
||||||
ProxyPassReverse http://$b_host:$b_port/
|
ProxyPassReverse http://$b_host:$b_port/
|
||||||
</Location>
|
</Location>
|
||||||
|
ErrorLog $APACHE_LOG_DIR/tls-proxy_error.log
|
||||||
|
ErrorLogFormat "[%{u}t] [%-m:%l] [pid %P:tid %T] %7F: %E: [client\ %a] [frontend\ %A] %M% ,\ referer\ %{Referer}i"
|
||||||
|
LogLevel info
|
||||||
|
CustomLog $APACHE_LOG_DIR/tls-proxy_access.log common
|
||||||
|
LogFormat "%v %h %l %u %t \"%r\" %>s %b"
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
EOF
|
EOF
|
||||||
for mod in ssl proxy proxy_http; do
|
for mod in ssl proxy proxy_http; do
|
||||||
|
Loading…
Reference in New Issue
Block a user