default 607 B

1234567891011121314151617181920212223242526272829
  1. server {
  2. listen 80;
  3. server_name 192.168.253.189;
  4. access_log /var/log/nginx/server.log;
  5. root /var/jenkins_home/workspace/bi-web/dist;
  6. index index.html index.htm;
  7. location / {
  8. }
  9. }
  10. server {
  11. listen 81;
  12. server_name 192.168.253.189:81;
  13. access_log /var/log/nginx/gitbook_dev.log;
  14. root /var/jenkins_home/workspace/bi-web/gitbook/dev/_book;
  15. index index.html index.htm;
  16. location / {
  17. }
  18. }
  19. server {
  20. listen 82;
  21. server_name 192.168.253.189:82;
  22. access_log /var/log/nginx/gitbook_product.log;
  23. root /var/jenkins_home/workspace/bi-web/gitbook/product/_book;
  24. index index.html index.htm;
  25. location / {
  26. }
  27. }