Making WordPress work with nginx reverse proxy on port 80
-
Every single post I’ve found when googling this involves SSL. But I just want regular http to work on an nginx reverse proxy with wordpress.
Here’s my nginx config:
server{ listen 80; server_name ericsbinaryworld.com www.ericsbinaryworld.com; location / { proxy_pass https://127.0.0.1:8008; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $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; proxy_set_header Host $host; } }
I haven’t changed anything in the wp-Config because all the changes I see involve https.
How can I fix this?
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Making WordPress work with nginx reverse proxy on port 80’ is closed to new replies.