So I’ve attempted to follow the Nginx guide dreamhost has published but I’m still getting 404 on permalinks.
Another thing to note is that I’m using multiple installs on my server that aren’t in the root directory for my domain.
#######################
# Permalinks
location / {
try_files $uri $uri/ /index.php?q=$uri$args;
}
location /dir/wordpressdirectory {
try_files $uri $uri/ /index.php?q=$uri$args;
}
this is what I have right now, located in my user/nginx/mysite.net/wordpress.conf
Ideas?