mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-01-13 21:36:40 -08:00
22 lines
724 B
Plaintext
22 lines
724 B
Plaintext
<VirtualHost *:443>
|
|
DocumentRoot /var/www/zwift-offline
|
|
ServerName us-or-rly101.zwift.com
|
|
ServerAlias secure.zwift.com
|
|
|
|
WSGIScriptAlias / /var/www/zwift-offline/zwift-offline.wsgi
|
|
|
|
<Directory /var/www/zwift-offline/>
|
|
Options -Indexes
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/zwift_offline_access.log combined
|
|
ErrorLog /var/log/apache2/zwift_offline_error.log
|
|
|
|
SSLCertificateFile /var/www/zwift-offline/ssl/cert-zwift-com.pem
|
|
SSLCertificateKeyFile /var/www/zwift-offline/ssl/key-zwift-com.pem
|
|
</VirtualHost>
|