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