乌班图16 配置nginx
Posted 焦虑的soul
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了乌班图16 配置nginx相关的知识,希望对你有一定的参考价值。
阿里云 乌班图16
安装ngnix
sudo apt install nginxnginx 启动 重启 关闭
sudo service nginx start restart stop status
- nginx 的配置
sudo vim /etc/nginx/nginx.conf
http {
# upstream django {
# server 127.0.0.1:8001; # 使用8001端口与uWSGI服务器通信
# }
server{
listen 80;
server_name hezhi.site;
# location /ann {
# uwsgi_pass django;
# include /home/scripts/uwsgi_params; # the uwsgi_params file you installed
# }
location / {
root /home/test; # 静态文件的目录
index index.html; # 这里切记不能丢掉分号
}
}
}
以上是关于乌班图16 配置nginx的主要内容,如果未能解决你的问题,请参考以下文章
乌班图 之 Ubuntu 16.04 LTS连接无线上网炒鸡慢问题!!!