mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
15 lines
496 B
Nginx Configuration File
15 lines
496 B
Nginx Configuration File
http {
|
|
proxy_cache_path /data/nginx/cache levels=1:2 keys_zone=STATIC:10m
|
|
inactive=24h max_size=1g;
|
|
server {
|
|
location / {
|
|
proxy_pass http://1.2.3.4;
|
|
proxy_set_header Host $host;
|
|
proxy_cache STATIC;
|
|
proxy_cache_valid 200 1d;
|
|
proxy_cache_use_stale error timeout invalid_header updating
|
|
http_500 http_502 http_503 http_504;
|
|
}
|
|
}
|
|
}
|