File size: 385 Bytes
272dfc6
55a57c5
272dfc6
 
 
 
55a57c5
272dfc6
 
55a57c5
272dfc6
 
 
 
 
 
 
 
55a57c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Example Caddyfile for self-hosting with automatic HTTPS


yourdomain.duckdns.org {
    reverse_proxy localhost:3000
    
    
    encode gzip
    
    
    header {
        Strict-Transport-Security "max-age=31536000; includeSubDomains"
        X-Content-Type-Options "nosniff"
        X-Frame-Options "SAMEORIGIN"
        Referrer-Policy "strict-origin-when-cross-origin"
    }
}