• nginx配置


     // 最大连接数  
    events {
        use epoll;
        worker_connections  20480;
    }
    //反向代理:
    //访问 zs.kangehao.com
    //端口号80然后跳转到,htts://www.baidu.com
    //location指令说明
    server {
           listen       80;
           server_name  zs.kangehao.com;
    
           location / {//这里的 / 是一个匹配url的 如果不是/ 是 res
    那么访问的网站就是 zs.kangehao.com:80/res才会跳转下面的网站
                root   /data/www/shanzhuzishou/www;
                index  index.html index.htm;
                try_files $uri $uri/ /index.html;
            }
    
        }
    
    
    
    server {
           listen       80;
           server_name  zs.kangehao.com;
    
           location / {
                root   /data/www/shanzhuzishou/www;
                index  index.html index.htm;
                try_files $uri $uri/ /index.html;
                proxy_pass htts://www.baidu.com
            }
    
        }
        
    
    
    
    
    
  • 相关阅读:
    -mysql-锁2
    -mysql-锁机制分为表级锁和行级锁
    JDBC

    JDBC接口介绍之Statement
    JDBC
    -Java-泛型
    JDBC的介绍和数据库的连接
    2014年9月1日 总结
    MediaRecorder test
  • 原文地址:https://www.cnblogs.com/yangxinpython/p/14139461.html
Copyright © 2020-2023  润新知