1.下载nginx
下载地址:nginx: download
2.上传到服务器,然后解压
执行命令:tar -zxvf nginx-1.26.1.tar.gz
3.初始化Nginx
进入Nginx的根目录,执行命令:./configure
(1)假如进行configure时报错
执行命令 yum -y install pcre-devel下载依赖,然后再进行configure。
(2)如果还报错,可以执行命令
执行命令 yum -y install openssl openssl-devel,再进行configure就不会报错了。
(3)进行make
执行命令:make
(4)然后执行命令:make install
4.查看Nginx是否成功安装
执行命令:whereis nginx
出现Nginx的目录表示成功安装。
5.修改配置文件
执行命令:vim /usr/local/nginx/conf/nginx.conf
添加server
server {
listen 5403;
server_name 服务器地址;
client_max_body_size 100m;
root html;
index index.html index.htm;
location /images{
alias 系统图片存放地址;
#index default.jpg;
allow all;
autoindex on;
}
6.Linux开放端口
sudo firewall-cmd --permanent --add-port=端口/tcp
sudo firewall-cmd --reload
需要同时开放80和5403端口。
7.启动和关闭nginx
进入安装Nginx的sbin目录中 /usr/local/nginx/sbin(默认在这里)。
启动命令:./nginx
关闭命令:./nginx -s stop
重启命令:./nginx -s reload
访问地址:在浏览器中使用ip地址访问
标签:index,执行命令,configure,Nginx,nginx,地址,服务器,搭建 From: https://blog.csdn.net/milk_yan/article/details/143476689