同时使用nginx和zuul配置
Posted 噢咦嗒的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同时使用nginx和zuul配置相关的知识,希望对你有一定的参考价值。
配置文件
$ ls -lrt
-rw-r--r-- 1 root root 826 May 10 10:56 nginx.conf
$ pwd
/etc/nginx
增加配置
在http {}里
upstream nginx_zuul {
server XXXX: 8769;
}
server {
listen 80;
location / {
proxy_pass http://nginx_zuul;
proxy_set_header Host $host:$server_port;
}
}
XXXX:8769是zuul的ip和端口
以上是关于同时使用nginx和zuul配置的主要内容,如果未能解决你的问题,请参考以下文章