[NginX] Codeigniter를 위한 server config

기본 환경설정 참고

https://www.nginx.com/resources/wiki/start/topics/recipes/codeigniter/ 


Go API 추가부분은 아래를 참고하였음.

https://wani.kr/posts/2016/07/01/nginx-proxy-settings/ 




vi /etc/nginx/conf.d/www_telepasi_co_kr.conf


//==> 아래에 임의(예> www_telepasi_co_kr.conf)의 conf파일을 생성하고

//아래의 내용을 입력한다.


############## Domain Redirection

server {

        listen  80;

        server_name telepasi.com *.telepasi.com;

 

        return 301 http://www.telepasi.co.kr$request_uri;

}

 

############## Http Configuration

server {

        listen          80;

        root            /telepasi/web/telepasi.com/www;

        index           index.php index.html;

        server_name     telepasi.co.kr *.telepasi.co.kr;

 

        #access_log     /telepasi/web/telepasi.com/nginxLog/telepasi.co.kr.access.log;

        #error_log      /telepasi/web/telepasi.com/nginxLog/telepasi.co.kr.error.log;

 

        ############# For CI

        # set expiration of assets to MAX for caching

        location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {

                expires max;

                log_not_found off;

        }

 

        location / {

                # Check if a file or directory index file exists, else route it to index.php.

                try_files $uri $uri/ /index.php;

        }

 

        # uri가 있는 경우 

        location uri {

                try_files $uri $uri/ /index.html;

        }

 

        # PHP reverse proxy 설정

        location ~* \.php$ {

                fastcgi_pass 127.0.0.1:9000;

                include fastcgi.conf;

        }

 

        ############# For Go API

        location /go/api {

                # 호출형태 http://www.telepasi.co.kr/go/api/ping

                rewrite ^/go/api(/.*)$ $1 break;                # url에서 other 뒤에 있는 URL을 전부 그대로 사용.

                proxy_pass http://www.telepasi.co.kr:8081;      # 8081 port로 Redirection

                proxy_set_header X-Real-IP $remote_addr;        # 실제 접속자의 IP를 X-Real-IP 헤더에 입혀서 전송.

                proxy_redirect off;

        }

}



//수정후

systemctl restart php-fpm.service

systemctl restart nginx



0
0
이 글을 페이스북으로 퍼가기 이 글을 트위터로 퍼가기 이 글을 카카오스토리로 퍼가기 이 글을 밴드로 퍼가기
captcha
자동등록방지 숫자입력

웹개발

번호 제목 글쓴이 날짜 조회수
82 [PHP] empty vs is_null vs is_set 비교 최고관리자 09-11 1,261
81 [Font] Every Font Awesome 4.7.0 Icon, CSS Class, & Unicode 최고관리자 08-19 1,298
80 [PHP] 문자열을 구분자로 구분하여 배열로 만들때 whitespace trim시키기 최고관리자 07-29 1,270
79 [PHP] $_SERVER['SERVER_NAME'] vs $_SERVER['HTTP_HOST'] 최고관리자 07-23 1,594
78 [css] Layout을 제대로 하고 싶다면 Flex 와 Grid를 배워보자 최고관리자 07-20 1,699
77 [PHP] define 중복으로 인한 Internal Server Error 500 최고관리자 07-16 1,214
76 [MySQL] Procedure & View 확인 최고관리자 05-25 1,214
75 [JavaScript] JQuery를 이용한 Drag Drop 리스트 순서변경 최고관리자 05-21 2,937
74 [JavaScript] defer 와 async 최고관리자 05-14 1,281
73 [JavaScript] 홈페이지에 날개를 달자 -2 최고관리자 04-26 1,229
72 [HTML] URL 사용 규칙 최고관리자 03-30 1,280
71 [JS] 자바스크립트 쿠키 클래스 최고관리자 03-19 1,307
70 [MySql] mysql error 메세지 모음 최고관리자 03-11 2,980
69 [PHP] TCP Socket Server +2 최고관리자 03-05 3,131
68 [JS] 문자열로 전송된 함수명을 실행하는 방법 최고관리자 02-26 1,688
67 [Javascript] 홈페이지에 날개를 달자 - Animation & Scrolll 효과 Plugin 최고관리자 02-21 1,240
66 [Form] Submit 버턴 만들어 입력데이타 검사하고 Submit 하기. 최고관리자 01-13 1,255
65 [MySQL] Join 걸어서 Update하기 최고관리자 01-07 1,371
64 [Docker] MedDream DICOM Viewer for Orthanc PACS server 최고관리자 01-05 1,857
63 [Docker] 도커 도메인 여러개 사용하기 (Docker multi Domain) (웹서버 여러개) 최고관리자 01-05 5,981