什么是跨域?
跨域混卵,指的是瀏覽器不能執(zhí)行其他網(wǎng)站的腳本入撒。它是由瀏覽器的同源策略造成的疙剑,是瀏覽器對(duì) JavaScript 施加的安全限制戒突。
實(shí)際開(kāi)發(fā)過(guò)程中表現(xiàn)為屯碴,如果本地的Html代碼未提交到服務(wù)器,本地是不能直接調(diào)用服務(wù)器 API 獲取數(shù)據(jù)的膊存。
Nginx
Nginx 是一個(gè)高性能的 HTTP 和反向代理服務(wù)器导而,也是一個(gè)IMAP/POP3/SMTP 服務(wù)器。其特點(diǎn)是占有內(nèi)存少隔崎,并發(fā)能力強(qiáng)今艺,事實(shí)上 nginx 的并發(fā)能力確實(shí)在同類(lèi)型的網(wǎng)頁(yè)服務(wù)器中表現(xiàn)較好,中國(guó)大陸使用 nginx 網(wǎng)站用戶(hù)有:百度爵卒、京東虚缎、新浪、網(wǎng)易钓株、騰訊实牡、淘寶等。
反向代理
反向代理(Reverse Proxy)方式是指以代理服務(wù)器來(lái)接受internet上的連接請(qǐng)求轴合,然后將請(qǐng)求轉(zhuǎn)發(fā)給內(nèi)部網(wǎng)絡(luò)上的服務(wù)器创坞,并將從服務(wù)器上得到的結(jié)果返回給internet上請(qǐng)求連接的客戶(hù)端,此時(shí)代理服務(wù)器對(duì)外就表現(xiàn)為一個(gè)反向代理服務(wù)器受葛。
配置步驟
- 從官網(wǎng)下載nginx;
- 解壓后题涨,找到conf文件夾下的nginx.conf文件豪椿,即配置文件;
- 用文本編輯器打開(kāi)nginx.conf文件携栋,找到http節(jié)點(diǎn)下的server節(jié)點(diǎn)搭盾,參照下面配置;
配置文件
listen 80;
# 設(shè)置本機(jī)ip
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
client_max_body_size 20m;
location / {
root html;
index index.html index.htm;
client_max_body_size 20m;
}
location /apis {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
#
# Custom headers and headers various browsers *should* be OK with but aren't
#
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
#
# Tell client that this pre-flight info is valid for 20 days
#
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
if ($request_method = 'POST') {
add_header 'Access-Control-Allow-Origin' *;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
if ($request_method = 'GET') {
add_header 'Access-Control-Allow-Origin' *;
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
# 匹配apis之后的路徑和參數(shù)
rewrite ^.+apis/?(.*)$ /$1 break;
include uwsgi_params;
# 實(shí)際調(diào)用的API
proxy_pass http://www.test.cn;
按照上述配置婉支,如果要調(diào)用 http://www.test.cn/order/check API 本地直接調(diào)用 http://localhost/apis/order/check 即可鸯隅。
保存后雙擊nginx.exe文件即可運(yùn)行服務(wù)器。
nginx簡(jiǎn)單命令:
- 啟動(dòng)服務(wù)器 start nginx
- 停止服務(wù)器 nginx -s stop 或 nginx -s quit
- 重新加載 nginx -s reload