diff --git a/.infra/files/apache2.conf b/.infra/files/apache2.conf new file mode 100644 index 0000000..761bf11 --- /dev/null +++ b/.infra/files/apache2.conf @@ -0,0 +1,20 @@ + + 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 +