I\'m converting my mediawiki site to use nginx as a frontend for static files with apache on the backend for php. I\'ve gotten everything working so far except for when I vi
Using rewrite rules in location section like this:
location = / {
rewrite "^.*$" /wiki/Main_Page break;
}
Pay attention "break" here. Means break out the rewrite cycle.
If this page is located in backend server, here should use proxy_pass.