Update run script and Apache proxy target to use port 8019 and document the default port.
13 lines
284 B
Plaintext
13 lines
284 B
Plaintext
<VirtualHost *:80>
|
|
ServerName tts.ncue.net
|
|
|
|
ProxyPreserveHost On
|
|
ProxyRequests Off
|
|
|
|
ProxyPass / http://127.0.0.1:8019/
|
|
ProxyPassReverse / http://127.0.0.1:8019/
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/tts_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/tts_access.log combined
|
|
</VirtualHost>
|