default.conf 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 /website/ {
  41. proxy_pass http://sku3d-website:7902/longyuan/;
  42. }
  43. # 网站用户接口
  44. location /usercenter/ {
  45. proxy_set_header Host $host;
  46. proxy_set_header X-Forwarded-For $remote_addr;
  47. proxy_set_header X-Forwarded-Host $server_name;
  48. proxy_set_header X-Real-IP $remote_addr;
  49. proxy_pass http://sku3d-usercenter:8908/usercenter/;
  50. }
  51. }