- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很难解决几天内无法解决的问题。
问题是 ERR_CONNECTION_REFUSED 的错误。
我正在尝试使用子域通过反向代理访问 api。
我正在使用 Ubuntu。
这是配置:
default:
server {
listen 80;
listen [::]:8080;
root /var/www/servicos.siteabc.org;
server_name servicos.siteabc.org;
#server_name _ ;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
location / {
proxy_redirect off;
proxy_set_header host $host;
proxy_set_header X-real-ip $remote_addr;
proxy_set_header X-forward-for $proxy_add_x_forwarded_for;
proxy_pass http://localhost:5000;
}
}
servicos.siteabc.org:
[Unit]
Description=Example .NET Web API App running on Ubuntu
[Service]
WorkingDirectory=/var/www/servicos.siteabc.org
ExecStart=/usr/bin/dotnet /var/www/servicos.siteabc.org/TDWebApi.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=dotnet-example
#User=root;
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false
[Install]
WantedBy=multi-user.target
nginx.conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
client_max_body_size 10M;
}
显然我的服务运行正常:
● nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2021-10-22 17:32:00 UTC; 1h 21min ago
Docs: man:nginx(8)
Process: 275411 ExecReload=/usr/sbin/nginx -g daemon on; master_process on; -s reload (code=exited, status=0/SUCCESS)
Main PID: 273065 (nginx)
Tasks: 3 (limit: 614)
Memory: 10.3M
CGroup: /system.slice/nginx.service
├─273065 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
├─275412 nginx: worker process
└─275413 nginx: worker process
Oct 22 17:32:00 siteabc.org systemd[1]: Starting A high performance web server and a reverse proxy server...
Oct 22 17:32:00 siteabc.org systemd[1]: Started A high performance web server and a reverse proxy server.
Oct 22 18:21:19 siteabc.org systemd[1]: Reloading A high performance web server and a reverse proxy server.
Oct 22 18:21:19 siteabc.org systemd[1]: Reloaded A high performance web server and a reverse proxy server.
Oct 22 18:23:21 siteabc.org systemd[1]: Reloading A high performance web server and a reverse proxy server.
Oct 22 18:23:21 siteabc.org systemd[1]: Reloaded A high performance web server and a reverse proxy server.
Oct 22 18:25:44 siteabc.org systemd[1]: Reloading A high performance web server and a reverse proxy server.
Oct 22 18:25:44 siteabc.org systemd[1]: Reloaded A high performance web server and a reverse proxy server.
Oct 22 18:30:51 siteabc.org systemd[1]: Reloading A high performance web server and a reverse proxy server.
Oct 22 18:30:51 siteabc.org systemd[1]: Reloaded A high performance web server and a reverse proxy server.
root@siteabc:/var/www# sudo systemctl status servicostreed.service
● servicostreed.service - Example .NET Web API App running on Ubuntu
Loaded: loaded (/etc/systemd/system/servicostreed.service; enabled; vendor preset: enabled)
Active: active (running) since Fri 2021-10-22 16:59:37 UTC; 1h 53min ago
Main PID: 271237 (dotnet)
Tasks: 16 (limit: 614)
Memory: 34.9M
CGroup: /system.slice/servicostreed.service
└─271237 /usr/bin/dotnet /var/www/servicos.siteabc.org/TDWebApi.dll
Oct 22 16:59:37 siteabc.org systemd[1]: Started Example .NET Web API App running on Ubuntu.
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: info: Microsoft.Hosting.Lifetime[0]
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: Now listening on: http://localhost:5000
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: info: Microsoft.Hosting.Lifetime[0]
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: Application started. Press Ctrl+C to shut down.
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: info: Microsoft.Hosting.Lifetime[0]
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: Hosting environment: Production
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: info: Microsoft.Hosting.Lifetime[0]
Oct 22 16:59:39 siteabc.org dotnet-example[271237]: Content root path:
最佳答案
error CONNECTION_REFUSE
D 适用于服务未在您请求的特定端口上运行的情况。使用命令ss -nltup
获取正在监听的所有可用端口的列表。我相信该服务未在端口 5000 上运行。
关于ubuntu - ERR_CONNECTION_REFUSED NGINX 代理反向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69681915/
我能否获得一个具有两个参数的递归Prolog谓词,称为反向,它返回列表的反向: 示例查询和预期结果: α-反向([a,b,c],L)。 L = [c,b,a]。 由两个称为palindrome的参数组
在使用 get_dummies() 将分类数据转换为数字数据后,我的数据框看起来像这样 score1 score2 country_CN country _AU category_leader ca
我有一张 table ,上面有一个国家/地区列表。说这些国家之一是“马其顿” 如果搜索“马其顿共和国”,什么 SQL 查询会返回“马其顿”记录? 我相信在 linq 中它会是这样的 var count
我们有一个角色继承结构,它假设每个人都默认获得最低级别的角色,而不是最高级别的过滤,如下图所示: role.Everyone //lowest level; everyone gets this ro
我正在使用 $.each() 解析数组,但在其中,我使用 .splice() 方法,因此我需要向后迭代。这可能吗? var store = [...]; //... var rules = [...]
我有一个 SPLObjectStorage 对象,其中 Player 对象作为键,分数作为与之关联的信息。玩家对象按照从最高分到最低分的顺序添加到存储中,但我现在需要以相反的顺序遍历它们。 我还需要能
我无法理解这一点:如果我给 Prolog reverse([], A). 它工作得很好,如果我给它 reverse(A, [] ). 并根据第一个建议回答 ; 它挂起!为什么? (GNU Prolog
我有一个 SPLObjectStorage 对象,其中 Player 对象作为键,分数作为与之关联的信息。玩家对象按照从最高分到最低分的顺序添加到存储中,但我现在需要以相反的顺序遍历它们。 我还需要能
我有一个HashMap看起来像: HashMap playerHashMap = new HashMap<>(); 玩家是包含姓名、号码、年龄等的对象。 现在我已经对它进行了排序,它看起来像这样: k
我有这个: file://localhost/Volumes/Untitled%20RAID%20Set%201/Callum/iTunes/Music/Steppenwolf/Steppenwolf
我正在使用 std::regex 并希望找到与某个用户定义的正则表达式字符串匹配的字符串中的最后一个位置。 例如,给定正则表达式 :.* 和字符串“test:55:last”,我想找到“:last”,
有一个表 ServErog(服务),它被重新引导到 4 个表 ServA、ServB、ServC、ServD(它们是不同的非统一服务),其中包含 servtype(服务类型)和 type_id(来自其
这个问题在这里已经有了答案: What is the best way to convert date from JavaScript string in format YYYYMMDD to Ja
我知道如何获得包含几个词的所有结果: SELECT * FROM `table` WHERE MATCH (`row`) AGAINST ('+word1 +word2' IN BOOLEAN MOD
你好,我有这个 html 代码: .container{ width: 450; height: 400; border:1px solid
我想知道是否有任何方法可以使用相同的 CSS 过渡实例来将其向前移动然后向后/向后移动。例如,假设我有这种转变: @-webkit-keyframes fade-transition { fr
假设我有这些字符串: char ref[30] = "1234567891234567891"; char oth[30] = "1234567891234567891"; 我想在 C++ 中使用 S
所以我有这段代码,它使 xcode 崩溃 void strrev(const std::string& str) { for(size_t i=str.length();i>=0;i--)
我正在使用下面的代码使每张图片 1 对 1 淡入淡出。我怎样才能反向执行此操作以使图片以相反的顺序加载? img {display:none;} $('img').each(function(
我正在尝试弄清楚如何改变 FrameLayout 堆叠其子项的方式。 目前它是最新的(先进先出)。我想更改它,使最新的 child 位于底部(FILO)。我试着查看 FrameLayout 的源代码,
我是一名优秀的程序员,十分优秀!