14 lines
275 B
Plaintext
14 lines
275 B
Plaintext
<VirtualHost *:443>
|
|
ServerName printscan
|
|
|
|
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>
|
|
|