nginx access - control - allow - origin CORS 크로스 도 메 인 보안 접근 문제 및 비밀 키 파일 설정 해결

1259 단어 nginx
nginx 를 이용 하여 https 접근 을 실현 하 는 동시에 비밀 키 를 추가 하고 크로스 오 버 방문 을 방지 합 니 다. 여기 서 저 는 기본 적 인 매개 변수 만 수정 하 였 습 니 다.
vi   nginx.conf
server {
        listen 443 default_server ssl;       #   https    ,  https 443  
        server_name  www.a.com;              #       web   ,        
        ssl on;                              #   https   
        ssl_certificate      ../cert/a.com.crt;      # https       ,    web         
        ssl_certificate_key  ../cert/a.com.key;      # https       ,    web         
    #    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;
            add_header Access-Control-Allow-Origin *;
            add_header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept";
            add_header Access-Control-Allow-Methods "GET, POST, OPTIONS";
        }
    }

# “add_header Access-Control-Allow-Origin *”    *                 ,   *   www.a.com    www.a.com         。

더 알 고 싶 으 면 보 세 요.https://blog.csdn.net/qq_27008807 / article / details / 78877877, 나 도 그 를 살 펴 보 았 다.

좋은 웹페이지 즐겨찾기