52AV璈A|52AV.ONE

 曉撖蝣
 蝡唾酉
敹急瑕
  • av隢憯BBS
  • 璈A
  • 芣瑟憭瘚
  • 鞎澆
  • 52av鋆貉摰
  • 銝剜-銝剖銝餅
Yahoo!憟拇撠
望: 璈A
Google憟拇撠
望: 璈A
     
亦: 2957|敺: 0
銝銝銝駁 銝銝銝駁

[nginx|php-fpm] Nginx銋CORS嚗Cross-Origin Resource Sharing嚗頝其皞鞈皞曹澈嚗靘撖衣暸脫迫憭慦擃鞈皞

[銴鋆賡包
頝唾唳摰璅撅
璅銝
潸” 2019-2-20 09:34:17 | 芰閰脖 撣 |摨閬 |梯璅∪
隞乩gist.github.comreverse proxied APIs蝭靘:3 ^0 T4 \5 l, k9 o; U7 H6 m
! M1 \8 q! f, _$ ^* U
0 Q1 R7 i/ M3 F$ j
# CORS header support
5 ]  ]9 O9 f% Y! A4 g#( e$ k; ^2 E) O# s" J
# One way to use this is by placing it into a file called "cors_support"
" F9 a0 X4 u, w0 `# j4 S9 Y+ B# under your Nginx configuration directory and placing the following
4 p3 E  e+ j. v+ A0 b8 \3 @7 x# statement inside your **location** block(s):( P; K5 j7 x( }7 n% D& c
#( ]9 o, [1 b# {& U5 B
#   include cors_support;
1 c+ G" q, x- H7 W( Z& j#& f: p# d8 f) u, s+ U; z. N
# As of Nginx 1.7.5, add_header supports an "always" parameter which
9 M: E* @5 L6 l7 q% E# allows CORS to work if the backend returns 4xx or 5xx status code.
: j) ~3 a6 @  i( W#
4 L. X# S' c! f. p# P8 J) o# For more information on CORS, please see: http://enable-cors.org/7 E7 \+ r% w- o: t9 W" l% n
# Forked from this Gist: https://gist.github.com/michiel/1064640: N( L, A3 T5 y& R  L9 N8 y
#% N7 B' {, M3 p4 y. y. Q
4 b/ R6 }2 L+ p; i) T. ], _+ V$ ?
set $cors '';
! x3 e5 t# }# v3 v  vif ($http_origin ~ '^https?://(localhost|www\.yourdomain\.com|www\.yourotherdomain\.com)$') {
% W# J- e5 P7 L5 u- Z, w2 ~        set $cors 'true';
; B" z, u! d  ]2 k}+ k/ r; R& l% I# @" t
  B, H9 b, M; a
if ($cors = 'true') {% S5 n1 Z8 ?" @# {; l, x- t
        add_header 'Access-Control-Allow-Origin' "$http_origin" always;
7 k  g# u7 G$ y+ L        add_header 'Access-Control-Allow-Credentials' 'true' always;
" m( _* e, r0 t# W; |        add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
! g9 _2 w. q% O2 \: {        add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Requested-With' always;) r* o- r( b9 P1 X9 r
        # required to be able to read Authorization header in frontend  j4 p3 C, C8 }: }2 b: G( ~
        #add_header 'Access-Control-Expose-Headers' 'Authorization' always;
. h2 K: j% c" q: Z9 D}
6 C! L# O5 P9 Y% V+ C5 e+ W, O
/ h/ g9 ~/ t0 \1 o: u4 ]5 U0 Y  O) Aif ($request_method = 'OPTIONS') {
/ M2 }/ S+ o8 p4 M0 q6 b) i        # Tell client that this pre-flight info is valid for 20 days0 @0 i5 U0 i" u, c- V& s% H
        add_header 'Access-Control-Max-Age' 1728000;
% _$ b/ d' ~) C/ @" ?  s0 n        add_header 'Content-Type' 'text/plain charset=UTF-8';# H) W. o) }1 O2 U/ _
        add_header 'Content-Length' 0;0 P7 }" C, E* I% k: F
        return 204;' f; F5 g) i8 X3 ]7 l8 U' u5 u& \
}
https://gist.github.com/Stanback/7145487#file-nginx-conf 閮隢蝭靘:

5 o" a0 O" X9 D! ]
if ( $request_method !~ ^(GET|POST|HEAD|OPTIONS|PUT|PATCH|DELETE)$ ) {     return 444;3 u" ^% a2 {- M$ f" ]
}  K# x9 C; q' k0 H0 `% Z
set $origin $http_origin;: N$ r5 O- W1 }, t* ]. b, E
if ($origin !~ '^https?://(subdom1|subdom2)\.yourdom\.zone$') {7 x9 a' V5 H: C  ^% y3 o5 f* E
     set $origin 'https://default.yourdom.zone';+ R  U! x' ^7 _; f5 v
}3 f+ b& h9 F9 @  ?9 w. ?0 c
if ($request_method = 'OPTIONS') {6 R6 C0 X3 Z: T! C5 q6 s$ C  D
     add_header 'Access-Control-Allow-Origin' "$origin" always;
: i; S* k, [0 Q  F: k6 H! i     add_header 'Access-Control-Allow-Methods' 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;
9 @8 B8 l& ~) B9 }2 f     add_header 'Access-Control-Allow-Headers' 'Content-Type, Accept, Authorization' always;
2 D5 t3 p1 Q* Y     add_header 'Access-Control-Allow-Credentials' 'true' always;
" S  ], q3 {' E  @8 X     add_header Access-Control-Max-Age 1728000;   #20 days   
1 L& o/ C  [4 F2 o2 t     add_header Content-Type 'text/plain charset=UTF-8';
9 ?" Y" U7 E5 N3 G8 t     add_header Content-Length 0;
& T# I- e& H) \. q3 r     return 204;
' N, t0 z, s* y5 {  l) x}
4 L( \) M5 f6 }6 W' o1 pif ($request_method ~ '(GET|POST|PATCH|PUT|DELETE)') {1 m' V9 P! @# f5 H
     add_header Access-Control-Allow-Origin "$origin" always;
9 f* \4 L1 E6 I( ]" r     add_header Access-Control-Allow-Methods 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;+ K+ n- r7 W$ _! o
     add_header Access-Control-Allow-Headers 'Content-Type, Accept, Authorization' always;
7 b' N) r0 ]. b$ A' c; k+ L$ m     add_header Access-Control-Allow-Credentials true always;) D% v2 j$ M# B4 V" j( M" |+ `$ Y9 |; H  r
}
Access-Control-Allow-Origin Multiple Origin Domains? 靘摮:
# based on https://gist.github.com/4165271/5 A$ V6 {/ {# \
#
8 N" X& t8 ?  `9 x# Slightly tighter CORS config for nginx" L* e. S6 \+ Q, u0 t
#
" x: N# V7 w1 b  R5 E# A modification of https://gist.github.com/1064640/ to include a white-list of URLs; U& V- B8 c$ V) N1 |
#
9 H' h4 a7 N& X5 M# Despite the W3C guidance suggesting that a list of origins can be passed as part of6 R0 N9 ]) V# o; Z& ^1 w* M/ j
# Access-Control-Allow-Origin headers, several browsers (well, at least Firefox)2 ^3 y0 f' B8 E1 R
# don't seem to play nicely with this.
4 _& a- b. J, I" m8 s% ?## X3 t2 x* J) ?- k
# To avoid the use of 'Access-Control-Allow-Origin: *', use a simple-ish whitelisting
3 X3 ~4 K/ h& n1 O# method to control access instead./ \; Z. S, K* a8 c) }  j, t+ f
#
# x& s' E% Q3 N. N# NB: This relies on the use of the 'Origin' HTTP Header.
, G5 D- @8 ~5 f, w/ n  Z8 o; ?8 ?/ h9 b, @3 ?
location / {
9 m& k* r5 @5 M' w9 c' q- t3 t0 N3 [8 j
    if ($http_origin ~* (^https?://([^/]+\.)*(domainone|domaintwo)\.com$)) {
0 e& n5 f) A" ^) y  C) S9 U        set $cors "true";
( U) o  A- P9 i- @' C; `    }% o! @3 E# e, I, `3 X' I# B  j

0 g3 ^1 b  F: \6 }$ O; i% D7 o) }    # Nginx doesn't support nested If statements. This is where things get slightly nasty.
/ u" G: c6 G8 G; I; F    # Determine the HTTP request method used& G/ D/ @! l* H
    if ($request_method = 'OPTIONS') {
- k4 q. q% u8 N        set $cors "${cors}options";' x  }- y9 e" t! J& W7 ?' m$ z/ X
    }2 P1 w1 o" _* y" ~/ U
    if ($request_method = 'GET') {
( a6 |5 p1 y9 V8 o; ~: J' R9 [        set $cors "${cors}get";
$ u2 |0 Z5 ^, U    }
. w# P4 P8 V, i- Z2 w. |    if ($request_method = 'POST') {
6 f- S5 U" k& @+ }, X9 Z' R/ \5 Y8 |" b        set $cors "${cors}post";
1 ]+ ?+ G9 C1 B: V. m    }
/ C2 Q* m3 x1 f/ d- ^; O) o" `5 e' c6 c8 k- V$ j; Z: ~
    if ($cors = "true") {
+ z* D+ ^$ q( X! L  H5 M        # Catch all incase there's a request method we're not dealing with properly
, i# w- W/ _; o& P% v4 f$ S/ m        add_header 'Access-Control-Allow-Origin' "$http_origin";
# G( f+ F2 E) w: p    }9 G- K% W& m* G5 P; p* x4 k

* q  R9 l: }1 V    if ($cors = "trueget") {
( b2 O+ i' \+ C3 x% h        add_header 'Access-Control-Allow-Origin' "$http_origin";
+ @5 E& B! f- m5 ]+ g2 L+ Z        add_header 'Access-Control-Allow-Credentials' 'true';
/ b5 U. V$ H- ]        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
% J) F- J# a% t$ V( G, A        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
- e( d2 E  ?" J# U    }" L: i! B7 U- q/ }0 Y! }

1 i' [$ C" a" J; A* N8 Y" @' [% k    if ($cors = "trueoptions") {" x4 m2 L$ x2 B1 ^
        add_header 'Access-Control-Allow-Origin' "$http_origin";4 Q: [/ k9 c: h3 x# O" W: B
. H: G) Y4 Y% P/ S9 Z$ c# M; G
        #4 l8 n) W* ]# ^( `4 P% t4 Q! ]
        # Om nom nom cookies; b) f' D# |4 _* l
        #
. x1 d8 K! ^+ f: z( A0 M, M: N        add_header 'Access-Control-Allow-Credentials' 'true';
8 X$ M6 A6 ], q# ^) b6 s7 T$ ^        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
( q9 L. K" U+ w1 w1 L0 I0 H& T( j  [0 x  p1 ]# T  `  Y+ c9 o
        #
: m  c0 p5 {3 S- W9 a        # Custom headers and headers various browsers *should* be OK with but aren't6 A3 C3 |0 V! h
        #% y8 \5 S( P: v4 N3 ]* P4 Y
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';" n# B- Z# p) l5 |* x* r. S

- f7 R2 A5 C+ p% @        #" w" J$ e# s9 T) }8 ^* J5 p
        # Tell client that this pre-flight info is valid for 20 days; n6 {5 X3 Y4 l% F
        #
8 V% i) j9 [  S9 K        add_header 'Access-Control-Max-Age' 1728000;
. z! X. {9 f' I$ W        add_header 'Content-Type' 'text/plain charset=UTF-8';
6 ?' K$ T+ S! v6 Z% ]# q, Y+ E. f        add_header 'Content-Length' 0;+ f0 `/ W$ Y9 M, J! V  L- H7 u
        return 204;  r9 V" e: v) u4 J' o1 H
    }
' y8 q6 v. p" e8 ?  Z3 `
; Q0 Z; i. X  \" c8 s    if ($cors = "truepost") {
# t( E$ e  p. @. E        add_header 'Access-Control-Allow-Origin' "$http_origin";
+ K# }+ |( x) q9 P        add_header 'Access-Control-Allow-Credentials' 'true';
1 Z# f6 F) K8 s2 ~. o* j) ^        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';) A; U+ B! J( l7 T
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';1 a  B+ @9 E9 m. B0 P$ t( r5 {
    }% i1 b8 ?% H6 q

( R) x6 d& O0 C3 U}
* s: Y" E5 A2 G/ G1 n1 e
) M; A& T0 ]# q& q6 x# ~

雿輻券

祉蝛閬

BT蝳

砍憛批捆靘餉衣雯頝臬批捆蝝颲行粹嗥蝬脩嚗摰撟湔遛嚗嚗甇脖誑銝嗅啣摰嗆摰撟湧翩鈭箏ㄚ孵舫脣伐銝憿亙祉璇甈橘芣遛18甇 雓蝯脣亦閬賬粹脩芣遛18甇脖芣撟渡雯閬賜雯頝臭嗥批捆鞈閮嚗撱箄降典舫脰蝬脰楝批捆蝝蝯蝜ICRA蝝摰鋆閮剖 (粹蝯行霅 祉蝬脣銝蝝瘛函隢憯啣嚗祉閮剜蝞∠)

QQ|撠暺撅||52AV璈A

GMT+8, 2024-5-24 10:52 , Processed in 0.082049 second(s), 15 queries .

蝯∠.撱

52avtv@gmail.com | QQ:2405733034     since 2015-01

鋆貉憒 敹恍敺 餈銵