我只有一个物理机(一年360多好像,配置不高2C1G),一个域名https://ddyydy.tk, 如何go backend 和 vue frontend 项目一起使用呢?由于前段使用了https协议,则内部服务的交互协议也必须是https,所以可以使用同一个域名指定server的path访问路径,在nginx上实现服务的反向代理,原理如下如所以:

这里贴下我的upstream配置:
- server
- {
- listen 80;
- listen 443 ssl http2;
- server_name ddyydy.tk;
- index index.php index.html index.htm default.php default.htm default.html;
- root /www/wwwroot/vue_project/ddyy/dist;
-
- #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
- #error_page 404/404.html;
- ssl_certificate /www/server/pane......pem;
- ssl_certificate_key /www/server/p.....pem;
- ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
- ssl_ciphers EECDH+CH....5;
- ssl_prefer_server_ciphers on;
- ssl_session_cache shared:SSL:10m;
- ssl_session_timeout 10m;
- add_header Strict-Transport-Security "max-age=31536000";
- error_page 497 https://$host$request_uri;
- #SSL-END
-
- #ERROR-PAGE-START 错误页配置,可以注释、删除或修改
- #error_page 404 /404.html;
- #error_page 502 /502.html;
- #ERROR-PAGE-END
-
- #PHP-INFO-START PHP引用配置,可以注释或修改
- include enable-php-00.conf;
- #PHP-INFO-END
-
- #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
- include /www/server/pa.....conf;
- #REWRITE-END
-
- #禁止访问的文件或目录
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
- {
- return 404;
- }
-
- #一键申请SSL证书验证目录相关设置
- location ~ \.well-known{
- allow all;
- }
-
- #禁止在证书验证目录放入敏感文件
- if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
- return 403;
- }
-
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
- {
- expires 30d;
- error_log /dev/null;
- access_log /dev/null;
- }
-
- location ~ .*\.(js|css)?$
- {
- expires 12h;
- error_log /dev/null;
- access_log /dev/null;
- }
- location /ddyy-b/
- {
- proxy_pass http://ddyy-b/;
- }
-
- access_log /www/wwwlogs/ddyydd.tk.log;
- error_log /www/wwwlogs/ddyydd.tk.error.log;
- }
- upstream ddyy-b{
- server 144.188.23.88:3000;
- }
重点是: location path 配置
- location /ddyy-b/
- {
- proxy_pass http://ddyy-b/;
- }
-
- upstream ddyy-b{
- server 144.188.23.88:3000; // 对应后端的服务器ip+port
- }





想参考源码的同学,请留言...