default.conf 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name localhost;
  5. #access_log /var/log/nginx/host.access.log main;
  6. client_max_body_size 200M;
  7. client_body_buffer_size 30M;
  8. location / {
  9. root /usr/share/nginx/html;
  10. index index.html index.htm;
  11. }
  12. #error_page 404 /404.html;
  13. # redirect server error pages to the static page /50x.html
  14. #
  15. error_page 500 502 503 504 /50x.html;
  16. location = /50x.html {
  17. root /usr/share/nginx/html;
  18. }
  19. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  20. #
  21. #location ~ \.php$ {
  22. # proxy_pass http://127.0.0.1;
  23. #}
  24. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  25. #
  26. #location ~ \.php$ {
  27. # root html;
  28. # fastcgi_pass 127.0.0.1:9000;
  29. # fastcgi_index index.php;
  30. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  31. # include fastcgi_params;
  32. #}
  33. # deny access to .htaccess files, if Apache's document root
  34. # concurs with nginx's one
  35. #
  36. #location ~ /\.ht {
  37. # deny all;
  38. #}
  39. # 商城接口
  40. location /mall/ {
  41. proxy_pass http://sku3d-mall:7904/mall/;
  42. }
  43. # 商城接口
  44. location /website/ {
  45. proxy_pass http://sku3d-website:7902/sku3dsite/;
  46. }
  47. # 网站用户接口
  48. location /usercenter/ {
  49. proxy_set_header Host $host;
  50. proxy_set_header X-Forwarded-For $remote_addr;
  51. proxy_set_header X-Forwarded-Host $server_name;
  52. proxy_set_header X-Real-IP $remote_addr;
  53. proxy_pass http://sku3d-usercenter:8908/usercenter/;
  54. }
  55. #商城用户接口
  56. location /malluser/ {
  57. proxy_pass http://sku3d-malluser:8908/usercenter/;
  58. }
  59. location /eps2svg/ {
  60. proxy_pass http://eps2svg-srv:8000/;
  61. }
  62. #nats-exporter
  63. # location /natsexporter/ {
  64. # proxy_pass http://nats-exporter:7777/;
  65. # }
  66. }