IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> nginx:同一个域名,在一个server 中代理多个location -> 正文阅读

[系统运维]nginx:同一个域名,在一个server 中代理多个location


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       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  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;


upstream wedding_api {
      server localhost:8080 fail_timeout=0;
  }

###### XX项目#####
# server {
#   listen 80;
#   server_name aidunet.cn  www.aidunet.cn;
#   client_max_body_size 100M;
#   location / {
#  proxy_set_header Host $host;
#  proxy_set_header X-Real-IP $remote_addr;
#  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#  proxy_buffering off;
#  proxy_pass http://wedding_api;
# }
#  location /sv5V7VUcuV.txt {
#  alias /opt/info/sv5V7VUcuV.txt;
# } 
#}  


###### XX项目#####
    server {
        listen 80;
        server_name aidunet.cn  www.aidunet.cn;
        add_header Strict-Transport-Security max-age=15768000;
        return 301 https://$server_name$request_uri;
     }


#####https代理,此域名监听443端口(http默认监听443),以https协议访问#####
server {
        listen 80 default backlog=2048;
        listen 443 ssl;
        server_name  aidunet.cn  www.aidunet.cn;
        # 下面ssl开头的是HTTPS相关的设置
        #ssl on;   #把ssl on;这行去掉,ssl写在443端口后面。这样http和https的链接都可以用
        ssl_certificate  /usr/local/nginx/conf/cert/6573978_aidunet.cn_nginx/6573978_aidunet.cn.pem;
        ssl_certificate_key  /usr/local/nginx/conf/cert/6573978_aidunet.cn_nginx/6573978_aidunet.cn.key;
        ssl_session_timeout  5m;#session有效期,根据需要适当延长
        ssl_session_cache  shared:SSL:10m;
        # 使用的加解密方式
        ssl_ciphers  ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        # 支持的协议类型
        ssl_protocols   TLSv1 TLSv1.1 TLSv1.2;
        # 优先使用服务端的加解密方式
        ssl_prefer_server_ciphers on;
        location / {
        # 单个服务
            proxy_pass http://wedding_api;
            # 负载均衡
            # proxy_pass http://yourServers/;
            proxy_redirect off;
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_set_header  X-Forwarded-For  $proxy_add_x_forwarded_for;
            proxy_set_header  Host  $http_host;
            proxy_set_header  X-NginX-Proxy  true;
            # 启用支持websocket连接
            #proxy_set_header Upgrade $http_upgrade;
	    #proxy_set_header Connection "upgrade";
         }

	# 代理静态资源
 	location /files/ {
          	   alias /project/uploadfile/wedding/;
		   try_files $uri $uri/;
		   index index.html index.htm;
        }


    }
############################################### XX目配置 end #################################



######婚庆文件#####
server {
        listen       8888;
        server_name  localhost;
        charset utf-8;
	#access_log  logs/host.access.log  main;
        #默认请求
        location / {
            root  /project/uploadfile/wedding/;#定义服务器的默认网站根目录位置
            index index.html index.php index.htm;#定义首页索引文件的名称
	           }
        }







}

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-11-14 22:09:38  更:2021-11-14 22:12:15 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:37:22-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码