You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
660 B
20 lines
660 B
<virtualhost *:443>
|
|
ServerName {{ gitea_domain_name }}
|
|
|
|
SSLEngine on
|
|
SSLHonorCipherOrder on
|
|
SSLCipherSuite PROFILE=SYSTEM
|
|
SSLProxyCipherSuite PROFILE=SYSTEM
|
|
SSLCertificateFile {{ gitea_binary_cert_path }}
|
|
SSLCertificateKeyFile {{ gitea_binary_cert_key_path }}
|
|
SSLCertificateChainFile {{ gitea_binary_cert_chain_path }}
|
|
SSLCACertificateFile {{ gitea_binary_ca_cert_path }}
|
|
|
|
ProxyPreserveHost On
|
|
ProxyRequests off
|
|
AllowEncodedSlashes NoDecode
|
|
ProxyPass / http://localhost:3000/ nocanon
|
|
ErrorLog /var/log/httpd/{{ gitea_domain_name }}-error.log
|
|
CustomLog /var/log/httpd/{{ gitea_domain_name }}-access.log combined
|
|
</virtualhost>
|