- 浏览: 59793 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (93)
- java (3)
- ios (9)
- wp (15)
- android (0)
- js (1)
- 服务器 (0)
- db (0)
- linux (1)
- python (0)
- xcode (0)
- ide (2)
- maven (0)
- spring (0)
- sql (0)
- 第三方 (1)
- nexus (0)
- nginx (11)
- tomcat (0)
- jenkins (0)
- zookeeper (1)
- git (1)
- svn (0)
- uml (0)
- redis (4)
- activemq (1)
- flume (0)
- kafka (0)
- mysql (1)
- memcached (0)
- mybatis (0)
- mac (0)
- mongo (1)
- docker (6)
- cache (0)
- jvm (0)
- markdown (0)
- springboot (24)
- mycat (3)
- LTS (3)
- 运维 (0)
- opts (1)
- netty (1)
- tcc (0)
- ffmpeg (2)
- 直播 (6)
- cxf (0)
- nodejs (0)
- storm (0)
- elasticjob (0)
- php (0)
最新评论
=============================
location / {
proxy_pass http://dev.abc.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host:$server_port;
add_header 'Access-Control-Allow-Origin' 'http://m3.abc.com';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
}
//////////////////////////////////////////////////////////////////////////
前后端分离配置:
=============================
hosts
127.0.0.1 dev.abc.com
=============================
/usr/local/etc/nginx/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;
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# 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;
# }
#}
# 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;
# }
#}
include servers/*;
}
=================================
/usr/local/etc/nginx/servers/yyb.conf
upstream cinema.admin {
server 127.0.0.1:10081;
}
server {
listen 80;
server_name dev.abc.com;
location /api {
proxy_pass http://cinema.admin;
add_header Cache-Control no-cache;
add_header Cache-Control private;
}
location /admin {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://cinema.admin;
add_header Cache-Control no-cache;
add_header Cache-Control private;
}
location / {
root /Users/samson/Work/movikr/movikr_workspace/cinema-admin-all/cinema-admin-h5/src;
index index.html index.htm;
add_header Cache-Control no-cache;
}
}
=====================================
api服务: 127.0.0.1:10081
前端:http://dev.abc.com
浏览器访问http://dev.abc.com
访问http://dev.abc.com/api/load调用http://127.0.0.1:10081/load的服务接口
location / {
proxy_pass http://dev.abc.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host:$server_port;
add_header 'Access-Control-Allow-Origin' 'http://m3.abc.com';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
}
//////////////////////////////////////////////////////////////////////////
前后端分离配置:
=============================
hosts
127.0.0.1 dev.abc.com
=============================
/usr/local/etc/nginx/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;
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# 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;
# }
#}
# 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;
# }
#}
include servers/*;
}
=================================
/usr/local/etc/nginx/servers/yyb.conf
upstream cinema.admin {
server 127.0.0.1:10081;
}
server {
listen 80;
server_name dev.abc.com;
location /api {
proxy_pass http://cinema.admin;
add_header Cache-Control no-cache;
add_header Cache-Control private;
}
location /admin {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://cinema.admin;
add_header Cache-Control no-cache;
add_header Cache-Control private;
}
location / {
root /Users/samson/Work/movikr/movikr_workspace/cinema-admin-all/cinema-admin-h5/src;
index index.html index.htm;
add_header Cache-Control no-cache;
}
}
=====================================
api服务: 127.0.0.1:10081
前端:http://dev.abc.com
浏览器访问http://dev.abc.com
访问http://dev.abc.com/api/load调用http://127.0.0.1:10081/load的服务接口
发表评论
-
nginx:socker转发
2017-10-16 17:07 6321.安装nginx,stream模块默 ... -
ffmpeg:视频直播流
2017-09-26 16:32 1957基于nginx:rtmp和ffmpeg搭建 测试视频流直播 通 ... -
nginx:rtmp
2017-09-26 14:50 815rtmp(Real Time Messaging Protoc ... -
nginx:nginx+lua+redis构建高并发应用
2017-08-08 09:51 1134一.安装lua # apt-get install lua5. ... -
nginx:缓存
2017-07-20 10:29 524http{ proxy_connect_timeout ... -
nginx:ssl
2017-07-19 15:28 435生成证书 可以通过以下步骤生成一个简单的证书: 首先,进入你 ... -
nginx:防盗链
2017-07-19 11:00 447防盗链: 举个例子:有时候我们从一个网站,比如腾讯,转载了一篇 ... -
nginx:loadBalance
2017-07-18 10:32 328nginx负载均衡 http { #include ... -
nginx:vhost
2017-07-18 10:36 482nginx配置多个vhost 1.进入配置安装目录 cd /u ... -
nginx tomcat负载均衡
2017-01-09 10:19 0负载均衡:多台服务器 ... -
nginx:基于的keepalived高可用方案
2017-08-07 09:59 453keepalived的作用是检测服务器的状态,如果有一台w ... -
nginx
2016-05-05 11:04 0NGINX ///////////////////////// ... -
nginx mac机
2015-07-09 17:44 0nginx /////////////////// ... -
nginx 52配置
2015-07-09 17:43 0# user nginx nginx; worker ... -
mac下nginx配置
2015-05-08 13:52 0============================= ...
相关推荐
Vue+SpringBoot前后端分离工程跨域问题解决...本文详细介绍了Vue+SpringBoot前后端分离工程跨域问题解决方案解析,通过示例代码和Nginx反向代理,解决了跨域问题。希望对大家的学习或者工作具有一定的参考学习价值。
最近自己做了一个前后端分离项目,前端采用HBuilderX开发,后端采用IDEA开发,在本地开发也跨域,部署到云服务器也跨域,下面介绍两种解决方案。 出于浏览器的同源策略限制。同源策略(Sameoriginpolicy)是一种约定...
跨域问题在现代Web开发中是一个常见的挑战,尤其是在前后端分离的架构中。浏览器的同源策略限制了JavaScript从一个源获取另一个源的数据,而Nginx作为一个强大的反向代理服务器,可以有效地解决这个问题。本篇文章将...
在现代Web应用开发中,前后端分离已经成为一种常见的...通过这种方式,Nginx作为反向代理,可以有效地解决前后端分离开发中的跨域问题,同时提供了安全性和性能保障。请根据实际需求调整配置,以确保你的应用正常运行。
本文档总结了 Nginx 跨域问题的解决方案,包括前后端分离跨域问题、代码逻辑优化、Nginx 配置方面和项目实践等方面。通过本文档,可以了解 Nginx 跨域问题的解决方法,并且可以应用于实际项目中。
【描述】:前后端分离已成为互联网项目开发的行业标准,通过Nginx+Tomcat(或中间加上Node.js)的方式实现解耦,为大型分布式架构、弹性计算、微服务和多端化服务奠定基础。这种模式的核心是前端HTML页面通过AJAX...
总结来说,跨域问题是前后端分离开发过程中需要重点解决的问题之一。本文介绍了在Vue项目开发阶段使用webpack配置代理解决跨域的方法,以及在生产环境中如何配置Nginx服务器,确保前端项目在不同环境下都能够正常...
跨域问题来源于浏览器的同源策略。客户端和服务端不同IP不同端口都算跨域。 springboot解决跨域有cros,配置就是那几项。 如果把服务端程序部署在nginx上,在nginx 也可以解决,服务端和nginx只用写一个即可, ...
### 若依前后端分离项目部署指南 #### 一、部署Linux + Nginx ...综上所述,通过上述步骤和方法,可以顺利地完成若依平台的前后端分离项目在不同环境下的部署,并有效解决部署过程中可能出现的各种问题。
在IT行业中,前后端分离项目的部署是一项至关重要的任务,它涉及到服务器配置、应用打包、代理设置等多个环节。本文档详细介绍了两种不同的部署方案,一种是在Linux服务器上部署SpringBoot+Vue项目,结合Nginx和...
在前后端分离的架构中,Vue.js作为前端框架与Spring Boot作为后端服务进行交互时,常常会遇到跨域和Session、Cookie失效的问题。本文将详细介绍如何解决这些问题。 首先,跨域是由于浏览器的安全策略限制,同一源...
web前后端分离开发,前端Vue跨域配置和服务器端nginx跨域配置
综上,部署若依框架的前后端分离项目需要对Linux、Nginx、Tomcat、Redis、Vue.js和Spring Boot有一定的了解,同时还需要掌握跨域问题的解决方案。遵循上述步骤,开发者能够成功部署并运行若依项目,实现高效、稳定的...
在现代Web开发中,由于浏览器的同源策略限制,前后端分离的项目常常会遇到跨域问题。当一个请求的源(协议+域名+端口)与目标资源所在的位置不同时,浏览器会阻止这种请求,这被称为跨域。为了解决这一问题,我们...
Vue-cli 脚手架搭建的项目中,前后端分离导致的跨域问题变得尤其棘手。本文将详细介绍 Vue 跨域问题的解决方案,包括使用 Vue-cli 搭建项目、使用 axios 进行 ajax 请求、使用 proxyTable 代理解决跨域问题,以及...
在现代Web应用开发中,前后端分离已经...通过这种方式,Nginx帮助我们轻松地解决了跨域问题,使得前后端分离的Web应用能够顺畅通信。不过,配置时一定要根据项目需求进行定制,避免过于宽泛的跨域设置带来安全风险。
在互联网应用开发中,前后端分离已成为常见的...在前后端联调中,我们主要关注CORS策略解决跨域问题,而Referrer Policy更多地用于增强整体的安全性。理解并合理运用这些策略,对于开发安全、高效的Web应用至关重要。