| 1234567891011121314151617181920212223242526272829 |
- server {
- listen 80;
- server_name 192.168.253.189;
- access_log /var/log/nginx/server.log;
- root /var/jenkins_home/workspace/bi-web/dist;
- index index.html index.htm;
- location / {
- }
- }
- server {
- listen 81;
- server_name 192.168.253.189:81;
- access_log /var/log/nginx/gitbook_dev.log;
- root /var/jenkins_home/workspace/bi-web/gitbook/dev/_book;
- index index.html index.htm;
- location / {
- }
- }
- server {
- listen 82;
- server_name 192.168.253.189:82;
- access_log /var/log/nginx/gitbook_product.log;
- root /var/jenkins_home/workspace/bi-web/gitbook/product/_book;
- index index.html index.htm;
- location / {
- }
- }
|