52AV璈A|52AV.ONE

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

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

[銴鋆賡包
頝唾唳摰璅撅
璅銝
潸” 2019-2-20 09:34:17 | 芰閰脖 撣 |摨閬 |梯璅∪
隞乩gist.github.comreverse proxied APIs蝭靘:* G$ O% T7 |- u. I! }
- e7 {- H" u  D+ `" Q
: M, ^5 @; n% N
# CORS header support
; _2 U$ A9 V- @( A0 M4 J6 `#
( u( X  N" s5 Z& p3 a! I9 T# One way to use this is by placing it into a file called "cors_support"
. d% L/ f7 s/ [1 D; a2 P# under your Nginx configuration directory and placing the following3 J8 w& n7 D3 [" D
# statement inside your **location** block(s):9 o  x1 r( U& w
#
+ ]6 f4 A+ R9 u4 l! d# @#   include cors_support;
8 z. f" X, l& {: U- u#7 u% [: i7 N; `% O
# As of Nginx 1.7.5, add_header supports an "always" parameter which3 b9 U* r& p* j+ d! ]" _  n$ o
# allows CORS to work if the backend returns 4xx or 5xx status code.0 c% @* ?5 j$ j$ ^! W' A4 q
#
$ e8 O) g$ j2 @# For more information on CORS, please see: http://enable-cors.org/) `7 J  J' t1 _$ D  a# w
# Forked from this Gist: https://gist.github.com/michiel/1064640
) j6 t" F3 n7 F8 m: M- M#* X# e7 ?4 _5 I: D1 [7 }: D
) J  f  B! a* [7 h2 v
set $cors '';' m5 ]# C4 }1 J$ R3 X
if ($http_origin ~ '^https?://(localhost|www\.yourdomain\.com|www\.yourotherdomain\.com)$') {
; O% v: P2 U  M- t        set $cors 'true';
7 }0 v- r) p* a# X}& f, b# \, [9 P
7 t! \- p. A" E1 ?1 y* B
if ($cors = 'true') {
2 i; l8 V& o- y$ G. d9 V# e; K        add_header 'Access-Control-Allow-Origin' "$http_origin" always;# A( T) o3 y) i
        add_header 'Access-Control-Allow-Credentials' 'true' always;
. X# }5 e+ V' v+ H        add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
6 }0 p. Q* L7 k$ \3 s0 h        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;
+ @* G" t5 v) Q& |' r1 g        # required to be able to read Authorization header in frontend
# x: Z* j" t- d! ?  H" B0 j, E! t        #add_header 'Access-Control-Expose-Headers' 'Authorization' always;, Z' q% ^3 M) D' Z( U
}
$ m8 W; C4 `. l" b5 ?8 H
# c  V' `7 c9 x8 U" zif ($request_method = 'OPTIONS') {
2 l1 a3 r1 d# ~. b& ?        # Tell client that this pre-flight info is valid for 20 days
+ e( N# _9 L6 Q+ L6 P        add_header 'Access-Control-Max-Age' 1728000;
9 I! i2 z% O5 A4 ^2 J: u) Z* ^        add_header 'Content-Type' 'text/plain charset=UTF-8';# I- B3 o4 q  \
        add_header 'Content-Length' 0;
3 y" T4 e  G; \6 G! D* P) h* a4 n5 c, U        return 204;
6 d" K6 k$ ]8 S' x7 |8 x" T}
https://gist.github.com/Stanback/7145487#file-nginx-conf 閮隢蝭靘:

/ p  k9 I& N. O; l6 y5 N
if ( $request_method !~ ^(GET|POST|HEAD|OPTIONS|PUT|PATCH|DELETE)$ ) {     return 444;8 }3 ^* |- X7 F5 Z" M1 V# O, q7 y
}
& P; N3 i& J7 v6 S" Sset $origin $http_origin;7 _" Q7 V' p. s2 Z
if ($origin !~ '^https?://(subdom1|subdom2)\.yourdom\.zone$') {
1 e* c* K9 P  _7 G     set $origin 'https://default.yourdom.zone';% F: i/ d. g! I6 m% r! P% Y3 _% f1 F
}2 e: w  {$ }/ m1 y% M4 q/ A
if ($request_method = 'OPTIONS') {6 i. I8 p5 K( L7 m
     add_header 'Access-Control-Allow-Origin' "$origin" always;
8 |+ ]0 T& Q& r8 @0 f     add_header 'Access-Control-Allow-Methods' 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;* }5 @1 w" F. i5 D$ _# V
     add_header 'Access-Control-Allow-Headers' 'Content-Type, Accept, Authorization' always;
! S8 F6 o3 G( o# \2 @' m     add_header 'Access-Control-Allow-Credentials' 'true' always;4 K% o' v; K4 x9 t
     add_header Access-Control-Max-Age 1728000;   #20 days   
0 l' d8 O6 d% P! H: s     add_header Content-Type 'text/plain charset=UTF-8';9 e# X6 v8 R, c
     add_header Content-Length 0;
3 i" V& b; P0 K8 E9 S5 N& C+ f     return 204;4 u2 C3 |& Z+ s7 g& o8 s% Z
}
3 q0 P; L% j6 B( l6 d, uif ($request_method ~ '(GET|POST|PATCH|PUT|DELETE)') {5 \4 S+ b& L* G& F7 {* E
     add_header Access-Control-Allow-Origin "$origin" always;. |. Q. c3 @$ N2 w# J
     add_header Access-Control-Allow-Methods 'GET, POST, PATCH, PUT, DELETE, OPTIONS' always;# i# w8 V$ a& ^: J4 i( B: V
     add_header Access-Control-Allow-Headers 'Content-Type, Accept, Authorization' always;) r5 l2 |* U& k; e5 X1 d) {2 A3 [% P
     add_header Access-Control-Allow-Credentials true always;+ z4 D5 q) F$ y7 Z& t4 ?5 C
}
Access-Control-Allow-Origin Multiple Origin Domains? 靘摮:
# based on https://gist.github.com/4165271/  k4 Y9 ~2 |: |* |
#8 V* ]9 i6 h& I$ C2 {9 y; E
# Slightly tighter CORS config for nginx
  H6 a0 k! j# Y# H: ~; g#( ]6 x- g; b: \% r
# A modification of https://gist.github.com/1064640/ to include a white-list of URLs5 K! V$ b7 L* u$ I7 N
#0 I) m/ ?6 @* h" V+ G( l
# Despite the W3C guidance suggesting that a list of origins can be passed as part of
2 ]6 W( m' S  S# Access-Control-Allow-Origin headers, several browsers (well, at least Firefox)( o6 z+ l" U+ U# j0 t( _* I
# don't seem to play nicely with this.5 R: z# @6 ?- o1 O, g
#/ v1 ^& a0 c$ S( }3 |. h
# To avoid the use of 'Access-Control-Allow-Origin: *', use a simple-ish whitelisting3 w4 l" x% M, V
# method to control access instead.' T" k" i. m$ R2 B% ]
#* e  b7 h, Y3 G1 x
# NB: This relies on the use of the 'Origin' HTTP Header.4 ^4 |$ U+ @/ {' i
9 X& r9 J& j: |/ E& _' t3 o* o: O
location / {  M7 \" z' i3 ?8 a

. O2 E: l0 q; b( q    if ($http_origin ~* (^https?://([^/]+\.)*(domainone|domaintwo)\.com$)) {
9 D$ n- D% h8 K: t( c6 p( j- A        set $cors "true";
; p$ n8 z  p  s% ^    }
6 i- c, u' }# B4 d  [" U4 P7 ?( z1 k* Q* P5 p
    # Nginx doesn't support nested If statements. This is where things get slightly nasty.
; C+ B" |# }8 h; |* }+ K/ g    # Determine the HTTP request method used
4 {6 C; E  G. e1 p- _    if ($request_method = 'OPTIONS') {
7 S3 m- F$ w6 _3 E. R) P        set $cors "${cors}options";) [* Q4 u- h8 j( N: G# ]/ Q. J
    }' q2 M: T: v9 a- v- A% N
    if ($request_method = 'GET') {9 v, v; @4 V3 Q9 H9 V4 n. q
        set $cors "${cors}get";
: k( z/ _# _6 q8 P    }
8 }1 I7 u  ]0 h    if ($request_method = 'POST') {- Y/ H% k8 U% H  r2 P4 p- c' t
        set $cors "${cors}post";0 L7 [# ]; t3 d' j% ]
    }
4 J! s7 t0 o9 |  L
1 U' E' h4 I2 M" r* C    if ($cors = "true") {
& X; R% Z: e/ I3 v. f5 j        # Catch all incase there's a request method we're not dealing with properly
  v0 a; `1 e. c0 M' d! S1 ^5 b- o        add_header 'Access-Control-Allow-Origin' "$http_origin";
- Y2 v2 F; ?5 b7 c( s/ A: e& ]    }3 ?" Z7 i% i6 q1 s

- M& P+ R) L% v9 m  O    if ($cors = "trueget") {
  A0 }  P; \2 l+ H, t0 l        add_header 'Access-Control-Allow-Origin' "$http_origin";; {  j9 L3 [  [4 T) O$ z
        add_header 'Access-Control-Allow-Credentials' 'true';1 U3 S8 B* F' L: M- ~
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';2 ?% l" ^" r  }
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
/ [" L  M5 ?2 V$ ~, w    }
6 k* D* Y- Y3 E
& U9 M/ P$ f. m+ U* N    if ($cors = "trueoptions") {
7 c& V" [. k+ D2 e2 _; c% h: o+ ^        add_header 'Access-Control-Allow-Origin' "$http_origin";
3 B+ g6 _% }/ o5 _2 |4 e% [$ B9 V
  H- o9 Q3 |' m5 b1 @        #5 S" }* P  K1 b+ ~
        # Om nom nom cookies
, y2 E* I8 m9 X5 G- E" c        #, q# {5 C( [& o+ X
        add_header 'Access-Control-Allow-Credentials' 'true';
- x0 o, o- ~7 ]7 ]5 p        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';6 ]0 [" S7 h! ?* ~; G1 `# f9 C
3 F" ~7 a: o2 y6 i4 c5 c
        #
& g/ g; h; G; ~8 ~# H        # Custom headers and headers various browsers *should* be OK with but aren't+ z& d% C% j7 l3 [% u( P
        #
, G* n% m! @" C        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';7 b7 J, j/ s  m1 X4 q0 F) W: ^, j

8 P3 W- i* U; O  g        #; B  S; H% |# L, v6 C  p
        # Tell client that this pre-flight info is valid for 20 days0 Z/ w2 A- ]; z5 ]/ F- `
        ## m+ h% p" A8 x* w/ I6 V1 n0 d
        add_header 'Access-Control-Max-Age' 1728000;2 W3 E4 g9 `& f$ v$ f
        add_header 'Content-Type' 'text/plain charset=UTF-8';3 P) E  E+ U5 r- t- B8 I& x
        add_header 'Content-Length' 0;3 b8 |7 O( p# C. I
        return 204;
' o% D% C3 n8 d( D    }
+ |& D# W! @  y6 T$ Z6 z+ g' _4 I9 A+ r
    if ($cors = "truepost") {
) o2 a# m$ t' a        add_header 'Access-Control-Allow-Origin' "$http_origin";
5 M+ g3 `! V; O8 ^0 V. b        add_header 'Access-Control-Allow-Credentials' 'true';3 @( T, ~0 d9 c* s# R) @: Y
        add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';: s  Q. c$ j5 |7 K8 |
        add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
- A1 x: E- L6 H    }
2 t' P. H$ Y( W8 W. Y  b. Q2 {0 z4 n9 _
}

7 l$ J8 O' l; R% a8 T) p' l' T
  X  e" A- y2 _

雿輻券

祉蝛閬

BT蝳

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

QQ|撠暺撅||52AV璈A

GMT+8, 2024-6-17 00:37 , Processed in 0.063331 second(s), 15 queries .

蝯∠.撱

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

鋆貉憒 敹恍敺 餈銵