mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 16:19:11 +02:00
11 lines
226 B
Nginx Configuration File
11 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;
|
|
}
|
|
}
|