Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. server {
  2. server_name docs.megagroup.ru docs.srv18.com;
  3. listen 80;
  4. access_log off;
  5. error_log /var/log/nginx/docs.megagroup.ru_error;
  6. location = /favicon.ico {
  7. log_not_found off;
  8. access_log off;
  9. return 404;
  10. }
  11.  
  12. location /seo/kp/ {
  13. return 403;
  14. # proxy_pass http://optimizer.4prj.ru/static/docs/kp/;
  15. }
  16.  
  17. location /seo/report/{
  18. proxy_pass http://my.megagroup.ru/seo/report/;
  19. }
  20.  
  21. location /api/{
  22. proxy_pass http://opossum.4prj.ru/docs/api/;
  23. }
  24.  
  25. location /docs/{
  26. proxy_pass http://opossum.4prj.ru/docs/documents/;
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement