23 lines
897 B
Plaintext
23 lines
897 B
Plaintext
# tt-verein.de nutzt dieselbe ausgerollte Anwendung wie tt-tagebuch.de.
|
|
<VirtualHost *:443>
|
|
ServerName tt-verein.de
|
|
ServerAlias www.tt-verein.de
|
|
DocumentRoot /var/www/tt-tagebuch.de
|
|
<Directory /var/www/tt-tagebuch.de>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
ErrorLog ${APACHE_LOG_DIR}/tt-verein.de_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/tt-verein.de_access.log combined
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/letsencrypt/live/tt-verein.de/fullchain.pem
|
|
SSLCertificateKeyFile /etc/letsencrypt/live/tt-verein.de/privkey.pem
|
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
|
ProxyRequests Off
|
|
ProxyPass /api http://localhost:3050/api
|
|
ProxyPassReverse /api http://localhost:3050/api
|
|
ProxyPass / http://localhost:3050/
|
|
ProxyPassReverse / http://localhost:3050/
|
|
</VirtualHost>
|