gpt4 book ai didi

node.js - 如何将 nginx 与 adonis 一起使用?

转载 作者:行者123 更新时间:2023-12-01 18:09:45 27 4
gpt4 key购买 nike

我正在尝试部署一个 api adonis,并尝试使用 nginx 来启用对我的 http 请求的外部访问。

我安装了 nginx 并进入 ssh,我转到:

cd /etc/nginx
vi nginx.conf

所以,我输入了这段代码:

#user  nobody;
worker_processes 1;

#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

#gzip on;


# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;

# location / {
# root html;
# index index.html index.htm;
# }
#}

server {
listen 80;

server_name knowhowexpressapp.com ;

location / {
proxy_pass http://localhost:3333;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_cache_bypass $http_upgrade;
}
}


# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;

# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;

# location / {
# root html;
# index index.html index.htm;
# }
#}

}

在服务器名称中我输入了域名;在端口中我输入了 3333,因为这是我在 .env 中输入的端口;

我启动 nginx:

cd /usr/bin/etc/nginx
nginx

检查nginx是否正在运行:

[root@knowhowexpressapp etc]# ps aux | grep nginx
root 14143 0.0 0.0 55320 1028 ? Ss 11:41 0:00 nginx: master process nginx
nginx 14144 0.0 0.0 55708 1936 ? S 11:41 0:00 nginx: worker process
root 14188 0.0 0.0 112712 964 pts/2 S+ 11:42 0:00 grep --color=auto nginx

我的 .env 存档:

HOST=ip from my server
PORT=3333
NODE_ENV=production
APP_NAME=AdonisJs
APP_URL=http://${HOST}:${PORT}
CACHE_VIEWS=false
APP_KEY=GPhustNKtbIlrxawTZa6xQTIkHcjBXFr
DB_CONNECTION=pg
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=xxxx
DB_DATABASE=xxx
HASH_DRIVER=bcrypt

所以,我检查 pm2 并且我的服务器正在运行:

⇆ PM2+ activated 
┌─────┬───────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
│ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │
├─────┼───────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
│ 0 │ server │ default │ 4.1.0 │ fork │ 12586 │ 16m │ 34 │ online │ 0% │ 41.0mb │ root │ disabled │

但是当我尝试访问我的 api 时,我得到:

Could not get any response There was an error connecting to https://knowhowexpressapp.com/login.

我的服务器是centos 7

只有当我输入 http://ipfrommyserver 时,我的 api 才会运行但是当我尝试访问该域时,我收到错误。

最佳答案

嗯...我发现,正如同伴所说,似乎缺少将 DNS 指向 API 的某些内容...最好使用IP,更容易...

它有 DNS 传播时间...并加速...最好清除浏览器的缓存...尝试使用匿名浏览器...另一个浏览器...另一台电脑...甚至在巴西的情况下...关闭调制解调器...要更改IP和更新调制解调器的 DNS。

还有 CRTL + Shift + R

关于登录...

当您访问: http://knowhowexpressapp.com/login

 HttpException: E_ROUTE_NOT_FOUND: route not found GET / login

当您访问: http://knowhowexpressapp.com/#/login

您可以看到登录页面...

甚至输入 https ...

顺便看看您是否正确发布了 SSL。

要了解门,我推荐 UFW,因为它最小化并更新更实用。

发送新闻!

关于node.js - 如何将 nginx 与 adonis 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59794781/

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