Create apache2.conf
This commit is contained in:
parent
a7950fdadb
commit
5472f66fd8
|
@ -0,0 +1,20 @@
|
|||
<VirtualHost *:443>
|
||||
ServerAdmin XXXXXXXXXX
|
||||
ServerName XXXXXXXXXX
|
||||
ServerAlias XXXXXXXXXX
|
||||
DocumentRoot XXXXXXXXXX
|
||||
|
||||
# Enable secure communication using HTTPS
|
||||
SSLEngine on
|
||||
SSLCertificateFile XXXXXXXXXX
|
||||
SSLCertificateKeyFile XXXXXXXXXX
|
||||
SSLCACertificateFile XXXXXXXXXX
|
||||
|
||||
# Tell tusd that the HTTPS protocol is used, in order to
|
||||
# allow constructing correct upload URLs.
|
||||
RequestHeader set X-Forwarded-Proto "https"
|
||||
|
||||
# Pass requests to tusd server
|
||||
ProxyPass /files http://localhost:1080/files
|
||||
ProxyPassReverse /files http://localhost:1080/files
|
||||
</VirtualHost>
|
Loading…
Reference in New Issue