本教程使用安装包安装
安装前你需要安装以下依赖
apt-get install gcc
apt-get install libpcre3 libpcre3-dev
apt-get install zlib1g zlib1g-dev
sudo apt-get install openssl
sudo apt-get install libssl-dev
1.解除压 tar 文件 2.进入解压目录:执行 ./configure 3.执行 make&make install 命令 Nginx默认会被安装在/usr/local/nginx目录下(也可以使用参数--prefix=指定自己需要的位置), 安装成功后 /usr/local/nginx 目录下有四个子目录分别是:conf、html、logs、sbin 其中 Nginx 的配置文件存放于 conf/nginx.conf, bin文件是位于 sbin 目录下的 nginx 文件。 确保系统的 80 端口没被其他程序占用,运行 sbin/nginx 命令来启动 Nginx,打开浏览器访问此机器的 IP,如果浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功 (查看nginx安装在哪,输入whereis nginx)
./nginx 启动
./nginx -s reload 重启
./nginx -s stop 停止
./nginx -s quit 安全退出
./nginx -s reload 重新加载配置文件
ps aux|grep nginx 查看nginx进程
静态资源存放
/usr/local/nginx/html
读取css、js文件到nginx.conf
标签:ubutun,conf,nginx,get,Nginx,install,安装,页面 From: https://www.cnblogs.com/liuzhichao520/p/18027841