52AV璈A|52AV.ONE

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

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

[銴鋆賡包
頝唾唳摰璅撅
璅銝
潸” 2019-2-20 09:34:17 | 芰閰脖 撣 |摨閬 |梯璅∪
隞乩gist.github.comreverse proxied APIs蝭靘:
; Y7 x2 Y# `8 y+ @. E4 K# \! r
) Y! n2 G. u" y9 t0 T8 v8 a: j

# M; D! _& ], G3 w
# CORS header support
& w" `; `- y  D" Y# y#
! ?: B5 A; b& A2 Q; Z( g# One way to use this is by placing it into a file called "cors_support"
3 D1 O; O! J7 ~3 F: g3 [# under your Nginx configuration directory and placing the following
- B% Y# r4 m& P4 Y# statement inside your **location** block(s):9 a/ z9 S) U+ C, K
#
( E( t# t0 ]' ~: K- R; t  p2 \#   include cors_support;. @+ U  p$ [! W5 v2 d' j  I3 x
#3 M" v  X/ C# j3 f
# As of Nginx 1.7.5, add_header supports an "always" parameter which/ D; s/ w5 g+ e& a) u- L: k$ I
# allows CORS to work if the backend returns 4xx or 5xx status code.! f) C8 `5 E( A$ n* ?
#) K. M6 u2 c; b) a: E# O
# For more information on CORS, please see: http://enable-cors.org/$ a4 |  w: a/ @
# Forked from this Gist: https://gist.github.com/michiel/1064640
! c8 K& a- F! M$ }' u) H/ O#4 q- o* A. B7 V' V* P

. Y4 C6 l1 U5 A: p+ B# Nset $cors '';
8 C, n% h7 ]; V9 U+ Nif ($http_origin ~ '^https?://(localhost|www\.yourdomain\.com|www\.yourotherdomain\.com)$') {
) T; L# P0 a& q, C$ q* p( Q6 P        set $cors 'true';7 i( |0 r, S/ q6 P% B6 o* f
}- G% r, {! `, _' W- v. `

* M4 i8 L# n9 c6 fif ($cors = 'true') {; ~* e6 N" ]( [% _$ r# v
        add_header 'Access-Control-Allow-Origin' "$http_origin" always;
: _' \6 {8 M) q        add_header 'Access-Control-Allow-Credentials' 'true' always;. ~. I4 J/ Y2 B! N& V
        add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;  h' y1 V4 L; \7 m: {. @
        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;, n* x, a4 \, g& B  ]
        # required to be able to read Authorization header in frontend4 q8 U) j) U' Q/ ]; I3 A
        #add_header 'Access-Control-Expose-Headers' 'Authorization' always;. z8 T' [1 K- L" L4 D
}  @; x% {  G. n/ H3 L& v
3 t: ^# ]8 L3 }2 m2 ^4 A
if ($request_method = 'OPTIONS') {2 W! j* S. s: G9 l; ^' e
        # Tell client that this pre-flight info is valid for 20 days
- F: ^& [* V" p1 d6 d$ S" Y9 j        add_header 'Access-Control-Max-Age' 1728000;: s& Y! P5 S* F
        add_header 'Content-Type' 'text/plain charset=UTF-8';
# c8 E% u+ r8 Y! r        add_header 'Content-Length' 0;1 F6 Y: f' X3 K
        return 204;& B2 z3 s" W2 W7 [- P& P
}
https://gist.github.com/Stanback/7145487#file-nginx-conf 閮隢蝭靘:
( O& O/ U4 _- |1 m  |8 @! }9 |' P6 J
if ( $request_method !~ ^(GET|POST|HEAD|OPTIONS|PUT|PATCH|DELETE)$ ) {     return 444;5 s+ ~7 \" g. g1 }, ~8 \& t9 \* u
}% P1 T" S  [7 e" T; J( w( v
set $origin $http_origin;" E) U: k* A( U2 g0 F4 t5 d
if ($origin !~ '^https?://(subdom1|subdom2)\.yourdom\.zone$') {
, {* \7 @( \# b% R4 n" ~6 j0 y; x     set $origin 'https://default.yourdom.zone';6 x1 U+ F  `7 Y
}: W( X+ i* l% M( k6 v5 T8 `
if ($request_method = 'OPTIONS') {
/ H" h% }: a- i0 {" s2 n     add_header 'Access-Control-Allow-Origin' "$origin" always;
4 i( q! g: K1 J     add_header 'Access-Control-Allow-Methods' 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;
5 C" ?7 s" L1 Y4 ~/ P     add_header 'Access-Control-Allow-Headers' 'Content-Type, Accept, Authorization' always;
* e4 s. k2 o7 Q6 T% g* y; d     add_header 'Access-Control-Allow-Credentials' 'true' always;8 O2 x4 ~6 N1 |( ^  ~& k: {# `/ m5 }
     add_header Access-Control-Max-Age 1728000;   #20 days   ( _0 l( a7 u+ {! S
     add_header Content-Type 'text/plain charset=UTF-8';6 E) K, C( ~6 `2 P+ u9 d
     add_header Content-Length 0;
) A2 ^4 N( ?. \5 p- n( s5 |     return 204;
. F0 h5 w0 ~% W' D% h}
8 M6 I$ Z7 v, Vif ($request_method ~ '(GET|POST|PATCH|PUT|DELETE)') {2 b# Z9 @. e% M7 U
     add_header Access-Control-Allow-Origin "$origin" always;* p+ X. P' b! P* L3 \5 r3 @
     add_header Access-Control-Allow-Methods 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;- y3 w  z. L8 Y5 o  H* M* ^
     add_header Access-Control-Allow-Headers 'Content-Type, Accept, Authorization' always;
( |: N+ q: M2 y/ n* V5 N     add_header Access-Control-Allow-Credentials true always;
4 {4 c: O. K' b5 s}
Access-Control-Allow-Origin Multiple Origin Domains? 靘摮:
# based on https://gist.github.com/4165271/6 d2 v1 Z- s: v% P8 T' f
#& ~  S+ X# F5 R1 O& S  o
# Slightly tighter CORS config for nginx
8 z6 {/ J: P' g( S7 ?. ]#
" C) s  L4 |) I# \( V# A modification of https://gist.github.com/1064640/ to include a white-list of URLs
4 N( i" }  n4 k( V- I4 g( s* d9 W#
3 L7 P$ Z; A( E# Despite the W3C guidance suggesting that a list of origins can be passed as part of
6 E. X" {3 X7 w% H1 J! Y6 @# Access-Control-Allow-Origin headers, several browsers (well, at least Firefox)
8 L3 ]+ p3 n! A# F3 D. H# don't seem to play nicely with this.( C' g5 q* ]; z1 A
#
% t& k5 ?5 N$ d# g# To avoid the use of 'Access-Control-Allow-Origin: *', use a simple-ish whitelisting
* Y+ t- x: w) ~7 p. O# method to control access instead.  _! P$ i) P& L: X6 P2 ?# }
#
* L' g2 w9 Y) ^* V& x' k) T# NB: This relies on the use of the 'Origin' HTTP Header./ H0 I' W7 o* q" Y7 b- |# Z
: o" g7 @  ?* o
location / {
- a" X- _+ [" L
5 F- o% U7 k; o7 H  J5 f/ e    if ($http_origin ~* (^https?://([^/]+\.)*(domainone|domaintwo)\.com$)) {
6 g1 M, e8 W( k7 Z# ]1 D( t        set $cors "true";# `9 `: }& |- K
    }
3 i* v( E) h$ U8 Z" ]
& Q5 ~' A. w& F+ A1 x9 P* ?    # Nginx doesn't support nested If statements. This is where things get slightly nasty.! o" f% T- m7 ?9 [' S! J
    # Determine the HTTP request method used
( t( i/ J, p! X9 s    if ($request_method = 'OPTIONS') {
& Q4 c7 O3 y1 T6 X% v: @, o        set $cors "${cors}options";5 a- A7 O4 n9 v% \
    }
2 }( U2 \1 W8 y    if ($request_method = 'GET') {: w" C" h6 D. ?) w& M, y( B7 |. e
        set $cors "${cors}get";
" F( _4 G, x. {+ H    }
( G$ a% t, q% A8 n! ~    if ($request_method = 'POST') {: R; K8 D3 r$ @+ p+ p* ^
        set $cors "${cors}post";
) @3 o! t/ z( a* Q    }
+ }; q( }- A: E$ g
4 V6 }9 P8 Y; P, I    if ($cors = "true") {0 w; R% V& }9 Q6 G8 s
        # Catch all incase there's a request method we're not dealing with properly& j+ s. ]' R+ O: J
        add_header 'Access-Control-Allow-Origin' "$http_origin";# i( R/ z5 t- M& _! x
    }
8 ~  O5 E9 k6 ~4 V: Y  P/ y+ t
5 E! |: D+ Z1 v0 b. Q3 @4 z    if ($cors = "trueget") {
: p6 S9 u( b) _" H        add_header 'Access-Control-Allow-Origin' "$http_origin";1 h$ Y( X! l9 A3 [
        add_header 'Access-Control-Allow-Credentials' 'true';2 I1 R/ |; B: Z+ N& m& {
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
: x. }; U1 l; }, E5 t* b7 ~        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';$ z3 N3 @, `, a+ a5 c
    }
, _9 m1 A1 r) S( |3 s1 E& W& y4 ^4 m" A, \
    if ($cors = "trueoptions") {
$ p5 q* l" f* t( y' V4 T9 `( v: I        add_header 'Access-Control-Allow-Origin' "$http_origin";
# c" G, W) v/ l; E6 `
) I* a/ f; d: W" b        #
* s4 b# Z8 l3 j        # Om nom nom cookies
( P2 H( j6 D, S: \        #/ i# o3 ?; q1 R7 p5 [9 D
        add_header 'Access-Control-Allow-Credentials' 'true';
6 \2 Y2 H$ L; L        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';4 Q6 {  }, t1 k* r! C$ t+ F' X! r& k( g

9 c+ C/ Y" k! k  k, c        #! W3 p# |' \3 Y1 x1 A
        # Custom headers and headers various browsers *should* be OK with but aren't3 J; k6 b% f- h8 U* ?/ K
        #
2 G/ W" F+ t- v" E2 E1 z) L        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';  Q, B. j- P2 B) C' Y8 q

5 M( }- Z6 p0 y; M* b3 m9 G: q0 c  g        #
! ?6 G/ m, u" L' A3 i* s( u        # Tell client that this pre-flight info is valid for 20 days
$ E0 }) f7 F1 C$ q6 z4 h$ B/ I        #) f0 N; d: T( V8 C4 ^5 A; v
        add_header 'Access-Control-Max-Age' 1728000;
; o' d5 O# _3 I5 y$ F        add_header 'Content-Type' 'text/plain charset=UTF-8';( a# j9 Z; e. |/ w/ X2 t5 g' H
        add_header 'Content-Length' 0;7 X7 x6 ^6 B! Q3 S" M
        return 204;
: O# T1 f- D* c. @1 D    }
3 L( E9 V) |( o# ~" {' ^& w$ ^& [. @' f* Z# r3 S# z* C. q
    if ($cors = "truepost") {
. \4 R3 p4 m5 M: q  u! O, f: t        add_header 'Access-Control-Allow-Origin' "$http_origin";& U5 M9 c4 T1 s
        add_header 'Access-Control-Allow-Credentials' 'true';
  L) M3 f  X( W. ^. |/ P        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';. s7 [! N* b) E: c/ s4 J
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';/ h+ ~% Z# _: |7 |$ {9 A  r
    }1 v( k! P) [5 W1 k* ]9 M

4 `/ I2 a: ^5 H5 C& z}

' \8 w1 N/ z1 y" Z: F
" Q8 G1 e* w) }

雿輻券

祉蝛閬

BT蝳

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

QQ|撠暺撅||52AV璈A

GMT+8, 2024-4-25 06:56 , Processed in 0.066334 second(s), 15 queries .

蝯∠.撱

[email protected] | QQ:2405733034     since 2015-01

鋆貉憒 敹恍敺 餈銵