2022-03-11 20:07:05 +01:00
|
|
|
<VirtualHost *:443>
|
2024-09-24 20:24:28 +02:00
|
|
|
ServerName printscan
|
2022-03-11 20:07:05 +01:00
|
|
|
|
|
|
|
SSLEngine on
|
|
|
|
SSLCertificateFile "/etc/ssl/cert.crt"
|
|
|
|
SSLCertificateKeyFile "/etc/ssl/cert.key"
|
|
|
|
|
|
|
|
<Location />
|
|
|
|
ProxyPass "http://127.0.0.1:8080/"
|
|
|
|
ProxyPassReverse "http://127.0.0.1:8080/"
|
|
|
|
</Location>
|
|
|
|
</VirtualHost>
|
|
|
|
|