Doesn’t anyone have this setup and working?
Just for confirmation, we have followed notes in previous thread: Recommended subdomain multisite nginx vhost configuration with new web/ layout
Our nginx .conf looks like:
server {
listen 80;
server_name mu-test.blah *.mu-test.blah;
access_log /srv/www/mu-test.blah/logs/mu-test.blah.access.log;
error_log /srv/www/mu-test.blah/logs/mu-test.blah.error.log;
root /srv/www/mu-test.blah/current/web;
index index.php;
charset utf-8;
# See Virtualbox section at http://wiki.nginx.org/Pitfalls
sendfile off;
rewrite ^/(wp-.*.php)$ /wp/$1 last;
rewrite ^/(wp-(content|admin|includes).*) /wp/$1 last;
include wordpress.conf;
}
Still getting: ERR_EMPTY_RESPONSE after service nginx restart
What are we missing?