Advertisement
zdenny

nginx.conf

May 22nd, 2023
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. server {
  2. listen 3000 default_server;
  3. listen [::]:3000 default_server;
  4. server_name _;
  5.  
  6.  
  7. location = /favicon.ico { access_log off; log_not_found off; }
  8. location = /robots.txt { access_log off; log_not_found off; }
  9.  
  10. client_max_body_size 100M;
  11.  
  12. location /bar/ {
  13. proxy_pass http://bar-assistant:3000/;
  14. }
  15.  
  16. location /search/ {
  17. proxy_pass http://meilisearch:7700/;
  18. }
  19.  
  20. location / {
  21. proxy_pass http://salt-rim:8080/;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement