你可以轻松的在服务器上通过 Nginx 部署 HTTP 静态服务。
下载-解压-双击nginx.exe 即可运行
CentOS 下 yum 安装
使用 yum
来安装 Nginx
yum install nginx -y
安装完成后,使用 nginx
命令启动 Nginx: ./nginx
ubuntu 下 apt-get 安装
apt-get install nginx
使用 docker 安装 nginx 请参考教程: Docker 安装 Nginx | 菜鸟教程 https://www.runoob.com/docker/docker-install-nginx.html
linux 环境手动安装 nginx
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
-bash: make: command not found - 解决办法 一般出现这个-bash: make: command not found提示,是因为安装系统的时候使用的是最小化mini安装,系统没有安装 make 等常用命令,直接 yum 安装即可。
yum -y install gcc make
/usr/local/nginx/sbin
, 键入 ./nginx
即可启动默认80端口的nginx.分别执行下面这两行命令,就会自动安装nginx,等待安装完成即可
brew install nginx
其他命令
mac 下一些重要文件的路径
核心安装目录 /usr/local/Cellar/nginx/x.y.z
启动文件在该目录的bin下面
欢迎页面在html下面
Docroot (服务器默认路径): /usr/local/var/www
The default port has been set in `/usr/local/etc/nginx/nginx.conf`to 8080 so that
nginx can run without sudo.
nginx will load all files in `/usr/local/etc/nginx/servers/`
To have launchd start nginx now and restart at login:
`brew services start nginx`
Or, if you don't want/need a background service you can just run:
`nginx`
其他命令:
brew services restart nginx
重启 nginx 服务
brew services stop nginx
停止nginx服务.
mac 安装过程中遇到的问题
$ brew install pcre
发现
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
Could not symlink .
/usr/local/opt is not writable.
然后试试brew link pcre
也不行
Error: Could not symlink .
/usr/local/opt is not writable.
使用 sudo chown -R (whoami):admin /usr/local发现还是没用, 最终手动创建/user/local/opt 文件夹解决了(Mac High Sierra 中不能改变/usr/local的拥有者的问题)
Nginx 让新的配置生效 nginx -s reload
关闭命令: ./nginx -s stop
./configure --prefix=/home/work/nginx2 ..... // 第二个nginx的安装配置, 用于指定安装目录 make && make install
./configure --prefix=/home/work/nginx3 ..... // 第三个nginx的安装配置 make && make install
使用windows版本的nginx启动时遇到(1113: No mapping for the Unicode character exists in the target multi-byte code page)这个错误
解决:路径里面包含有中文的缘故