Title: molander's Replies | WordPress.org

---

# molander

  [  ](https://wordpress.org/support/users/molander/)

 *   [Profile](https://wordpress.org/support/users/molander/)
 *   [Topics Started](https://wordpress.org/support/users/molander/topics/)
 *   [Replies Created](https://wordpress.org/support/users/molander/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/molander/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/molander/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/molander/engagements/)
 *   [Favorites](https://wordpress.org/support/users/molander/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [How do I set up a reverse proxy with nginx?](https://wordpress.org/support/topic/how-do-i-set-up-a-reverse-proxy-with-nginx/)
 *  [molander](https://wordpress.org/support/users/molander/)
 * (@molander)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-do-i-set-up-a-reverse-proxy-with-nginx/#post-6653815)
 * lonhig, you can absolutely do what you want.
 * Move your location /logs/ directive before try_files. Also, remove the trailing
   slash for logs and add the URI to the pass:
 * location ~* /logs {
    proxy_pass [http://192.168.0.105:8000](http://192.168.0.105:8000);}
 * The tilde + asterisk will make the match case-insensitive. Remember, Nginx removes
   the matching portion in the handoff, so if you the URL for Kibana is 192.168.0.105:
   8000/logs/, you will have to add it back in on the pass:
 * location ~* /logs {
    proxy_pass [http://192.168.0.105:8000/logs/](http://192.168.0.105:8000/logs/);}

Viewing 1 replies (of 1 total)