Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name localhost;
  4.  
  5.  
  6. #rewrite ^ http://common-jcat-site.rnd.ki.sw.ericsson.se/site$request_uri? permanent;
  7. #charset koi8-r;
  8.  
  9. #access_log logs/host.access.log main;
  10.  
  11. location / {
  12. root /local/jcatcpp/common/public_html/site;
  13. index index.html index.htm index.php;
  14. }
  15.  
  16. location /JCATLMR-Tutorial {
  17. proxy_pass http://jcat.cn.ao.ericsson.se:8880/JCATLMR-Tutorial/;
  18. proxy_set_header Host $http_host;
  19. }
  20. location /nexus {
  21. proxy_pass http://jcat.cn.ao.ericsson.se:8081/nexus;
  22. proxy_set_header Host $http_host;
  23. }
  24.  
  25. location /hudson {
  26. proxy_pass http://jcat.cn.ao.ericsson.se:8088/hudson/;
  27. proxy_set_header Host $http_host;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement