gpt4 book ai didi

nginx - 如何将nginx.org配置为 Aqueduct 服务器的代理服务器?

转载 作者:行者123 更新时间:2023-12-03 02:57:01 26 4
gpt4 key购买 nike

我的 Aqueduct 服务器正在ubuntu 18.04(http://127.0.0.1:8888)上运行。我从nginx.org安装nginx。目前,我对nginx上的 Aqueduct 不使用任何阻挡。我修改了默认配置,例如将域名添加到其中。而且我的 Aqueduct 服务器和Nginx服务器都在工作。

我的问题是如何配置nginx,以便可以使用反向代理选项,以便不直接连接到 Aqueduct 服务器。有什么帮助吗?

PS。 我使用假域名和IP来显示我的配置设置。

我的Nginx配置是:

# Default server configuration
# My domain (mobile.niyazitoros.com) ip: 5.5.5.5 // TEST IP
# ------ http://mobile.niyazitoros.com and http://5.5.5.5 is working.

server {
listen 80 default_server;
listen [::]:80 default_server;

server_name mobile.niyazitoros.com;

# root /var/www/example.com;
# index index.html;

location / {
# My aqueduct server works on 127.0.0.1:8888
proxy_pass http://127.0.0.1:8888/;
}
}

最佳答案

好。我找到了。我在可用的站点和启用的站点中使用default.conf。这是修改default.conf的错误位置。正确的路径是在conf.d目录中修改default.conf。

1)安装nginx
2)运行:
nginx -v
(nginx版本:nginx / 1.15.5)
3)须藤nano /etc/nginx/conf.d/default.conf

server {
listen 80;
listen [::]:80;

error_log /var/log/nginx/your_domain_name.error.log debug;
rewrite_log on;

server_name your_domain_name;

location / {
proxy_pass http://127.0.0.1:8888/;
}
}

4)sudo systemctl重新加载nginx
5)sudo systemctl重新启动nginx
6)须藤Nginx -t
7)curl http://your_domain_name/

关于nginx - 如何将nginx.org配置为 Aqueduct 服务器的代理服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52717650/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com