[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
자동등록방지 숫자입력

웹개발

번호 제목 글쓴이 날짜 조회수
62 [Linux] CentOS postfix 메일서버 설치 및 설정(sendmail 설정) 최고관리자 12-23 1,366
61 [Ubuntu] 인터넷 연결이 안될 때 최고관리자 12-07 1,185
60 [Apache SSL] Ubuntu 인증서(전자서명) 최고관리자 11-24 1,287
59 [Ubuntu] ssl 임시 인증서 준비 및 발급받기 최고관리자 11-23 1,665
58 [Ubuntu] apache2 환경설정 생성기 최고관리자 11-23 2,888
57 [Ubuntu] apache2 설치 최고관리자 11-23 1,187
56 [vi 편집기] 단축키 최고관리자 11-23 1,112
55 [유용한 블로그] ^^.^^ 최고관리자 11-19 1,121
54 [JS] TimelineJS - 시간의 흐름을 네비게이션화 최고관리자 11-19 1,190
53 [JS] 스크롤을 감지하여 사이트의 헤더를 보이거나 숨기기 최고관리자 11-19 1,321
52 [Linux] NAS Mount 최고관리자 11-12 1,133
51 [React] React활용 최고관리자 11-10 1,169
50 [PHP] exec 실행에 대한 응답코드 최고관리자 11-02 1,517
49 [Linux] Shell Script 최고관리자 10-26 1,424
48 [폰트] 폰트 찾기 사이트 최고관리자 10-21 1,230
47 [통신] Socket packet test Program 최고관리자 10-20 1,713
46 [통신] 맥용 Socket Test Program 최고관리자 10-20 1,509
45 [통신] Mac에서 TCP Socket통신 테스트 하기 최고관리자 10-20 2,777
44 [NginX] 504 Gateway Time-out 에러와 해결방법 +1 최고관리자 10-16 24,436
43 [NginX] 설정 최고관리자 10-13 1,452