반응형
server {
    listen 80 default_server;

    root /var/www/html;
    index index.php index.html;

    client_max_body_size 10M;

    error_log  /var/log/nginx/error.log;
    access_log /var/log/nginx/access.log;

    add_header 'Access-Control-Allow-Origin' '{DOMAIN}' always;
    add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, HEAD' always;
    add_header 'Access-Control-Allow-Headers' 'Authorization, Origin, Access, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Pragma' always;
    add_header 'Access-Control-Allow-Credentials' 'true' always;
    if ($request_method = 'OPTIONS') {
        return 204;
    }

    location / {
        try_files $uri $uri/ /index.php?/$request_uri;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass php:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param TEST_SERVER "true";
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}

API서버를 이용하기 위해서 nginx 서버를 설치하고 php하고 연동했다.

 

OPTIONS 처리와 각각의 header 처리가 필요해서 몇시간동안 삽질했다..

 

location 에 넣었을때는 OPTIONS 처리만 가능했는데 순서를 변경하니까 잘 나온다 후... 

 

 

반응형

'LINUX' 카테고리의 다른 글

우분투 패키지 설치 에러  (0) 2018.07.06
SSH KEY 생성 및 사용법  (0) 2018.05.13
phpstorm svn 설정 및 삽질 리뷰  (0) 2018.01.05
AWS SCP 파일 전송하기  (0) 2017.06.05
아파치 웹 최상위 경로 찾기  (0) 2016.07.05

+ Recent posts