We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f5e24 commit 2b4d350Copy full SHA for 2b4d350
install/deb/templates/web/nginx/proxy_ip.tpl
@@ -12,3 +12,19 @@ server {
12
}
13
14
15
+server {
16
+ listen %ip%:%proxy_ssl_port% ssl http2;
17
+ server_name _;
18
+ ssl_certificate /usr/local/hestia/ssl/certificate.crt;
19
+ ssl_certificate_key /usr/local/hestia/ssl/certificate.key;
20
+
21
+ return 301 http://$host$request_uri;
22
23
+ location / {
24
+ root /var/www/document_errors/;
25
+ }
26
27
+ location /error/ {
28
+ alias /var/www/document_errors/;
29
30
+}
0 commit comments