本地的服务,想要用一个域名来访问,而不用ip。这时需要用到nginx来进行反向代理。
?
可通过windows修改hosts文件,来访问nginx,再通过nginx去反向代理访问服务。
nginx下的配置解析:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
#代表包括所有的conf.d下的配置文件
include /etc/nginx/conf.d/*.conf;
}
server {
listen 80;
server_name gulimall.com;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
proxy_pass http://192.168.31.106:8899;
}
本机hosts修改gulimall.com为指定的虚拟机nginx的ip
然后在虚拟机的nginx上添加配置文件,其中反向代理到product服务的ip+端口。
nginx反向代理网关服务
但是正常是需要nginx通过反向代理网关,通过网关去访问微服务的,所以,我们需要重新修改一下nginx的配置文件,以及在gateway服务中添加新的网关规则。?
?
|