Nginx的.conf文件路径配置

本文介绍了Nginx服务器的配置文件路径,主要关注`nginx.conf`。配置中包括监听端口号1880,服务器域名localhost,HTTP基本认证以及服务路径设置。`location`指令用于定义不同URL的处理方式,如根目录`/`指向html文件夹,`/demo`使用别名指向html/demo。同时,错误页面也被配置为定向到静态页面。
摘要由CSDN通过智能技术生成

nginx服务器文件目录如下图所示

nginx服务器的配置文件位于conf文件夹下,名称为nginx.conf;conf文件夹下文件目录如下所示:

nginx.conf配置文件如下,各参数含义详见备注:

 server {
        listen       1880;  #端口号
        server_name  localhost;  #服务域名
    #httpd认证配置信息
        auth_basic "Please input password"; #这里是验证时的提示信息
       auth_basic_user_file  e:/apache24/conf/.users; #hpptd认证文件路径及文件名

 #h服务路径配置

        location / {
            root   html;
            index  index.html index.htm;
        }

        location /demo {
            alias   html/demo;
            index  index.html index.htm;
        }

        #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   html;
        }
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

magic33416563

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

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

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

打赏作者

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

抵扣说明:

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

余额充值