1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| error_log /usr/share/nginx/logs/error.log; events { # 每一个worker进程能并发处理(发起)的最大连接数,计算较为复杂,如果需要详细的配置规则请自行查询详细资料,默认可以配置大一些 worker_connections 10240; } http { # 配置支持解析文件类型 include mime.types; # 配置允许跨域 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; #配置H5页面访问端口和根路径映射 server { listen 80; # 注意此处写的是部署的服务器真实地址 server_name 10.0.251.246; location / { # 以H5构建的网页放的位置为准,推荐直接放在nginx的html文件夹下 root /usr/share/nginx/html/StarfsaAppHTML; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } #配置api访问转发 server { listen 10080; # 注意此处写的是部署的服务器真实地址 server_name 10.0.251.246; location / { # 以实际部署的后台服务地址为准 proxy_pass https://192.168.32.34:8088; } } }
|