Ubuntu下载的nginx的位置

位置在/etc/nginx

启动nginx

systemctl status nginx

 上面的命令不合适,就重启nginx

sudo service nginx restart

关闭nginx

nginx -s stop

Ubuntu默认的html地址在该文件夹中的default中:

/etc/nginx/sites-available

if ($http_host ~* "^(www\.)?example\.com$") {
    return 403;
}

上一篇:rust 使用记录


下一篇:Elasticsearch:理解近似最近邻 (ANN) 算法