我的nginx是1.14.0、centos7.4。
我想通过nginx来访问我的一个服务127.0.0.1:8181
写成下面这样的话,我访问192.168.10.3是可以跳转到127.0.0.1:8181的
server { listen 80; server_name 192.168.10.3; location / { proxy_pass http://192.168.10.3:8181; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } }
但是我现在想当访问192.168.10.3/git时,才跳转到127.0.0.1:8181请问该怎么写配置呢?谢谢