使用Nginx配置同一端口访问不同路径下的文件

使用Nginx配置同一端口访问不同路径下的文件

  1. 编辑配置文件
/etc/nginx/nginx.conf
# http  
  server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name www.asimok.com;
        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        root /root/mq_blog/public;
        index index.html;
        }

        error_page 404 /404.html;
        location = /404.html {
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
        return 301 https://$host$request_uri;

    }
#https
   server{
        #监听443端口
        listen 443 ssl;
        #对应的域名,把baofeidyz.com改成你们自己的域名就可以了
        server_name www.asimok.com;
        #从腾讯云获取到的第一个文件的全路径
        ssl_certificate /etc/ssl/1_www.asimok.site_bundle.crt;
        #从腾讯云获取到的第二个文件的全路径
        ssl_certificate_key /etc/ssl/2_www.asimok.site.key;
        ssl_session_timeout 5m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
        ssl_prefer_server_ciphers on;
        #这是我的主页访问地址,因为使用的是静态的html网页,所以直接使用location就可以完成了。
        location / {
               #文件夹
               root /root/mq_blog/public;
               #主页文件
               index index.html;
        }
			# 大西瓜
        location /daxigua {
               alias /root/daxigua;
               index index.html;
        }
    }
  1. 保存退出
  2. 对配置文件进行校验

保存配置文件之后执行:

nginx -t

susccessful即可

image-20201209112907309

  1. 重启nginx服务
service nginx start
  1. 重新加载配置文件
nginx -s reload

多个路径配置

				location /daxigua {
               alias /root/daxigua;
               index index.html;
        }

使用root会将location后的daxigua追加在路径的尾部,在访问时就会访问到/root/daxigua/daxigua路径下去。
将root改成alias则不会将daxigua追加在路径尾部,访问时就为正确路径/root/daxigua。

测试

https://www.asimok.site/daxigua

https://www.asimok.site

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

没有胡子的猫

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值