mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Adding example Caddy configuration.
parent
c883cb44b8
commit
8a7f80ead5
@ -131,4 +131,23 @@ Below is an example of an apache2 conf file that you may customize to fit your e
|
||||
### If Docker and/or Paperless-NGX server is down but webserver is up, show error page ###
|
||||
ErrorDocument 503 '<!DOCTYPE html>\n<html xml:lang="en" lang="en" dir="ltr" prefix="og: http://ogp.me/ns#">\n<meta http-equiv="refresh" content="15" />\n<head id="head">\n<meta http-equiv="X-UA-Compatible" content="IE=edge"/>\n<title>Offline</title>\n<style>html{width:100%}body{background-color:#a6a6a6;text-align:center;font-family:Helvetica,Tahoma}</style>\n</head>\n<body>\n<h1>${public_url}</h1>\n<p>Appears to be offline... will try again every 15 seconds.<br><br>Nothing happening? Contact the <a href="mailto:${email}" target="_blank">admin</a>.</p>\n</body>\n</html>'
|
||||
</VirtualHost>
|
||||
```
|
||||
|
||||
# Caddy
|
||||
|
||||
Below is an example Caddy configuration
|
||||
|
||||
```
|
||||
:80 {
|
||||
reverse_proxy http://localhost:8000 {
|
||||
header_up Host {host}
|
||||
header_up Upgrade {http_upgrade}
|
||||
header_up Connection {connection}
|
||||
header_up X-Real-IP {remote_ip}
|
||||
header_up X-Forwarded-For {remote_ip}
|
||||
header_up X-Forwarded-Host {host}
|
||||
header_up X-Forwarded-Proto {scheme}
|
||||
header_down Referrer-Policy "strict-origin-when-cross-origin"
|
||||
}
|
||||
}
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user