Skip to content

Instantly share code, notes, and snippets.

@tivaliy
Created March 10, 2025 09:18
Show Gist options
  • Save tivaliy/e4b1f927e6f13a33a12a216a6f051162 to your computer and use it in GitHub Desktop.
Save tivaliy/e4b1f927e6f13a33a12a216a6f051162 to your computer and use it in GitHub Desktop.
events {
worker_connections 10;
}
http {
server {
listen 443 ssl;
server_name localhost;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
location / {
proxy_pass http://wordpress:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
server {
listen 80;
server_name localhost;
return 301 https://$host$request_uri;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment