mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
10 lines
226 B
Nginx Configuration File
10 lines
226 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name example.com;
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_pass http://localhost:9000;
|
|
}
|
|
}
|