nginx反向代理配置

1、背景:

   用域名访问,如果某个服务的端口号不是80,那么需要反向代理,通过Nginx转到对应端口去

2、解决办法:

    1、安装Nginx

sudo apt install nginx

 2、服务是否启动

sudo systemctl status nginx

 3、在目录 /etc/nginx/sites-enabled 下的文件default

sudo vim default 编辑只读文件

 server_name 你的域名;

 location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                # try_files $uri $uri/ =404;  注意这条要注释
                proxy_pass http://127.0.0.1:你特定的服务端口;
        }

4、重启Nginx生效

sudo service nginx restart

注意防火墙

现在你已经在你的服务器上安装和运行了 Nginx,你需要确保你的防火墙被配置好,允许流量通过 HTTP(80)和 HTTPS(443)端口。假设你正在使用UFW,你可以做的是启用 ‘Nginx Full’ profile,它包含了这两个端口:

sudo ufw allow 'Nginx Full'

防火墙状态: 

sudo ufw status

 

你可能感兴趣的:(nginx,服务器,运维)