标签:dex 出现 代理 设置 inf 标签 enable info mic
1) 添加 Nginx 到 YUM 源
sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
2)yum 安装
yum install nginx
3) 启动Nginx
sudo systemctl start nginx.service
出现上图,表示安装成功。
除了之前设置开机脚本外,我们也可以通过 systemctl enable 命令 来实现开机自启动服务。
systemctl enable nginx.service # 设置开机自启动
systemctl disable nginx.service # 关闭开机自启动
网站文件存放默认目录
/usr/share/nginx/html
网站默认站点配置
/etc/nginx/conf.d/default.conf
自定义Nginx站点配置文件存放目录
/etc/nginx/conf.d/
Nginx全局配置
/etc/nginx/nginx.conf
我们这边将 nginx 默认页面转为 tomcat 默认项目的页面即:输入 http://localhost
显示 http://localhost:8080
页面内容
1) 编辑 default.conf 文件
vim /etc/nginx/conf.d/default.conf
将 location 标签编辑成如下内容:
# location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
# }
location / {
proxy_pass http://localhost:8080;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
2)重启 nginx 服务,并刷新页面
systemctl restart nginx
可以看到已经将默认的网页转到 tomcat 默认项目上了
标签:dex 出现 代理 设置 inf 标签 enable info mic
原文地址:https://www.cnblogs.com/markLogZhu/p/11399953.html