@mvied, after we network activate it, I noticed the existing blogs don’t have that plugin enabled. I have to go back through each blog one at a time and enable it. Is there an easier way? If not, no big deal, it’s not that hard, just thought I’m missing something.
Silly me….I had a syntax error. Here is my updated conf file on nginx:
location / {
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_pass http://localhost;
}
Here is my nginx ssl.conf settings:
location / {
proxy_set_header "Host:" $host;
proxy_set_header "X-Forwarded-For" $proxy_add_x_forwarded_for;
proxy_pass http://localhost:80;
}