mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-08-03 01:15:46 -07:00
27 lines
906 B
Plaintext
27 lines
906 B
Plaintext
<VirtualHost *:443>
|
|
DocumentRoot /var/www/zwift-offline
|
|
ServerName secure.zwift.com
|
|
|
|
WSGIScriptAlias / /var/www/zwift-offline/secure.zwift.com.wsgi
|
|
|
|
<Directory /var/www/zwift-offline/>
|
|
Options -Indexes
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
Alias /auth/resources /var/www/zwift-offline/auth/resources
|
|
<Directory /var/www/zwift-offline/auth/resources/>
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/secure-zwift_access.log combined
|
|
ErrorLog /var/log/apache2/secure-zwift_error.log
|
|
|
|
SSLCertificateFile /var/www/zwift-offline/ssl/cert-secure-zwift.pem
|
|
SSLCertificateKeyFile /var/www/zwift-offline/ssl/key-secure-zwift.pem
|
|
</VirtualHost>
|