小编给大家分享一下如何实现Nginx前后端同域名配置,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!nginx前后端同域名配置的方法实现,具体如下:upstream
小编给大家分享一下如何实现Nginx前后端同域名配置,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
nginx前后端同域名配置的方法实现,具体如下:
upstream dfct {# ip_hash; server 121.41.19.236:8192;} server { server_name ct.aeert.com; location / { root /opt/WEB; try_files $uri $uri/ /index.html; error_page 405 =200 Http://$host$request_uri; } location ^~/web/ { proxy_set_header Host $proxy_host;# proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://121.41.19.236:8192/; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ct.aeert.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ct.aeert.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = ct.aeert.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ct.aeert.com; return 404; # managed by Certbot }
前后端分离的项目,前端和后端可以用不同的域名,也可以用相同的域名
以下为前后端使用相同域名情况:
一、前端使用www.xxx.com,后端使用api.xxx.com
server {server_name www.xxx.com;location / { root /tmp/dist; index index.html; try_files $uri $uri/ /index.html; } }
server {server_name api.xxx.com;location / {uwsgi_pass 127.0.0.1:8000;include /etc/nginx/uwsgi_params; }}
二、前端使用www.xxx.com,后端使用www.xxx.com/api/
uwsgi如果是使用http方式可以这样配
server {server_name www.xxx.com;location / { root /tmp/dist; index index.html; try_files $uri $uri/ /index.html; }location ^~ /api/ { proxy_pass http://127.0.0.1:8000/; }}
uwsgi如果是使用Socket方式的话需要这样配
server {server_name www.xxx.com;location / { root /tmp/dist; index index.html; try_files $uri $uri/ /index.html;}location ^~ /api/ { proxy_pass http://127.0.0.1:8080/; }}server {listen 8080;location / {uwsgi_pass 127.0.0.1:8000;include /etc/nginx/uwsgi_params; }}
以上是“如何实现nginx前后端同域名配置”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网精选频道!
--结束END--
本文标题: 如何实现nginx前后端同域名配置
本文链接: https://lsjlt.com/news/269580.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0