zoukankan      html  css  js  c++  java
  • Nacos 1.2.1 集群搭建(三) Nginx 配置 集群

    配置 Nginx 

     

     可以把.conf 文件拉到本地,配置好再传上去

     #gzip  on;
    
        upstream cluster{
            server 192.168.0.113:8848;
            server 192.168.0.110:8848;
            server 192.168.0.109:8848;
        }
        
        
        server {
            listen       8848;
            server_name  localhost;
    
            #charset koi8-r;
    
            #access_log  logs/host.access.log  main;
    
            location / {
                #root   html;
                #index  index.html index.htm;
                proxy_pass http://cluster;
            }

    改动如下

    [root@localhost sbin]# pwd
    /usr/local/nginx/sbin
    [root@localhost sbin]# ./nginx -c /usr/local/nginx/conf/nginx.conf

     网页可以正常访问,再添加一个配置信息,验证一下,能否成功保存到数据库

     

  • 相关阅读:
    推荐Windows下SVN服务器端和客户端工具软件
    QT的一些小知识
    Qt
    Qt
    ADB
    HTTP
    Python
    项目附
    项目
    架构
  • 原文地址:https://www.cnblogs.com/vipsoft/p/12733332.html
Copyright © 2011-2022 走看看