首页 > 系统相关 >docker nginx监听80端口 同一 IP 多域名配置方法--多子配置文件包含 https

docker nginx监听80端口 同一 IP 多域名配置方法--多子配置文件包含 https

时间:2024-04-11 18:34:38浏览次数:26  
标签:log 配置文件 -- IP nginx html conf 80 root

下载nginx镜像文件

docker pull nginx:1.24.0

宿主机上创建nginx_80 目录 html cert conf logs

创建 配置文件nginx.conf

一、Nginx 配置文件 nginx.conf

操作:在 http 模块增加(子配置文件的路径和名称):include /etc/nginx/conf.d/*.conf;

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  650;

    gzip  on;
    #client_header_buffer_size 1280m;
    #large_client_header_buffers 4 1280m;
    client_max_body_size 1024M; # 允许客户端请求的最大单文件字节数
	client_body_buffer_size 1024M;
    #client_body_buffer_size 2560m; # 缓冲区代理缓冲用户端请求的最大字节数
    proxy_connect_timeout    600;
    proxy_read_timeout       600;
    proxy_send_timeout       600;

    include /etc/nginx/conf.d/*.conf;
}

二、Nginx 子配置文件

  路径:/etc/nginx/conf.d 目录下

子配置文件例子:test.csydedu.com.conf

server {
    listen       80;
    listen  [::]:80;
    #server_name  localhost;
    #server_name 192.168.1.98;
	server_name test.csydedu.com;
	
    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        # 真正提供服务的ip和端口 test.csydedu.com 域名解析反向代理到这个地址提供服务
        proxy_pass http://23.100.60.201:9000; 
        root   /usr/share/nginx/html;
        index  index.html index.htm;
		
		 # 设置是否允许 cookie 传输
        add_header Access-Control-Allow-Credentials true;
        # 允许请求地址跨域 * 做为通配符
        add_header Access-Control-Allow-Origin * always;
        # 允许跨域的请求方法
        add_header Access-Control-Allow-Methods 'GET, POST, PUT, DELETE, OPTIONS';
        add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

   #location /prod-api/ {
   #          #mcyl_test0 容器名称 反向代理到 后台服务
	#		proxy_pass http://221.122.78.184:9067/;
   #  }
	 #location /api/uploads/{
	#      root /docker-root/lms/admin/upload_root/;
     #     autoindex on;
	# }
    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
server {
    listen 443 ssl;   #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
	listen [::]:443 ssl;
    server_name test.csydedu.com;  #将localhost修改为您证书绑定的域名,例如:www.example.com。
	#ssl on;
    #root html;
    #index index.html index.htm;
    ssl_certificate /cert/12442796_ytj.163smart.cn.pem;   #将domain name.pem替换成您证书的文件名。
    ssl_certificate_key /cert/12442796_ytj.163smart.cn.key;   #将domain name.key替换成您证书的密钥文件名。
    ssl_session_timeout 5m;
    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 / {
        root   /usr/share/nginx/html/lms;
        index  index.html index.htm;
    }
	#location /api/ {
    #    # 反向代理到 后台服务
    #    #proxy_pass   http://mcyl_test0:8080/;
	#	proxy_pass http://8.130.162.107:9062/;
    # }
    location / {
        # 真正提供服务的ip和端口 test.csydedu.com 域名解析反向代理到这个地址提供服务
        proxy_pass http://23.100.60.201:9000; 
     }
	 
}

接着创建第二个域名的配置文件 同上

三、创建容器
docker run --name nginx-80-1.24 --restart=always -d -p 80:80  \
-v /mnt/docker-root/nginx_80/html:/usr/share/nginx/html \
-v /mnt/docker-root/nginx_80/conf/nginx.conf:/etc/nginx/nginx.conf \
-v /mnt/docker-root/nginx_80/conf/conf.d:/etc/nginx/conf.d \
-v /mnt/docker-root/nginx_80/logs:/var/log/nginx \
-v /mnt/docker-root/nginx_80/cert:/cert/ \
--network my-net --log-opt max-size=10m --log-opt max-file=3 nginx:1.24.0

访问 test.csydedu.com 打开目标网站。

标签:log,配置文件,--,IP,nginx,html,conf,80,root
From: https://www.cnblogs.com/z_lb/p/18129843

相关文章

  • 杂题
    预计是以后感觉比较有价值并且不好明确分为某一类的题都放在里面[ABC124D]Handstand每次操作可以对一个子串反转,仔细想一下,不难想到每次应该都是对一个全为0的子串进行反转。因为假如我们将一个串进行操作使其变成全部为1,只对0操作的总操作数是一定是最低的。因为如果对1操作......
  • UJCMS 9.1.0 发布,国内开源 java cms
    许可协议从GPL-2改为Apache-2.0,更宽松的协议,方便用户将系统集成到自身的应用中。修复了已知bug,系统更加稳定。升级日志(9.1.0)修复前台全文搜索没有结果web.xmlsession过期时间从30分钟改成25分钟,部分漏洞扫描软件会将session过期时间大于等于30分钟判定为漏洞修复文章管理一......
  • [转帖]迈入 Cilium+BGP 的云原生网络时代
     http://arthurchiao.art/blog/trip-stepping-into-cloud-native-networking-era-zh/ Thispostalsoprovidesan Englishversion.本文是我们的前一篇博客 Trip.com:FirstSteptowardsCloudNativeNetworking 的后续,介绍自上一篇博客以来我们在基于Cilium的......
  • 基于dremio 安装包进行源码依赖包maven 私服重建的一个思路
    dremio25.0版本已经发布了,但是如果希望自己源码构建,但是缺少一些依赖造成编译会有问题,但是我们可以直接基于官方提供的下载包的文件进行maven私服的重建,以下说明下简单流程参考流程下载软件包这个可以从dremio官网下载到最好选择一个可以构建的分支本地构建下此步......
  • [题解] <NOIP2017> 时间复杂度
    [题解]NOIP2017时间复杂度题目描述小明正在学习一种新的编程语言A++,刚学会循环语句的他激动地写了好多程序并给出了他自己算出的时间复杂度,可他的编程老师实在不想一个一个检查小明的程序,于是你的机会来啦!下面请你编写程序来判断小明对他的每个程序给出的时间复杂度是否正......
  • fs.1.10 ON CENTOS7 dockerfile模式
     概述freeswitch是一款简单好用的VOIP开源软交换平台。centos7docker上编译安装fs.1.10的流程记录,本文使用dockerfile模式。环境dockerengine:Version24.0.6centosdocker:7freeswitch:v1.10.7dockerfile创建空目录,创建dockerfile文件。github访问经常失败,先下载好源......
  • SSM整合(Spring、SpringMVC、Mybatis)
    第一步:新建一个Webx项目第二步:导入相关依赖包第三步:配置Spring核心配置文件第四步:配置SpringMVC核心配置文件第五步:配置web.xml文件......
  • 从零基础到精通,抓包神器fiddler保姆级使用教程(一)
    Fiddler介绍以及安装Fiddler简介Fiddler是比较好用的web代理调试工具之一,它能记录并检查所有客户端与服务端的HTTP/HTTPS请求,能够设置断点,篡改及伪造Request/Response的数据,修改hosts,限制网速,http请求性能统计,简单并发,接口测试,辅助自动化测试,等等。现在抓包工具成为测试人员的必......
  • 工厂模式
    工厂模式分为:简单工厂、工厂方法、抽象工厂(了解即可)1、工厂模式的作用这也是考虑要不要使用工厂模式的标准:——封装变化:创建逻辑有可能变化,封装成工厂类之后,创建逻辑的变更对调用者透明。——代码复用:创建代码抽离到独立的工厂类之后可以复用。——隔离复杂性:封装......
  • 项目部署时邮件发送错误
    将springboot3项目部署到阿里云服务器运行,发送邮件时报错CouldnotconnecttoSMTPhost:smtp.qq.com,port:25,response:-1原因阿里云服务器出于安全策略的考虑,主动屏蔽了服务器25端口,导致邮件服务无法正常使用。解决办法重新编写自定义JavaMailSenderImpl,并注册为Be......