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

웹개발

번호 제목 글쓴이 날짜 조회수
42 [MySQL] user Table 권한설명 최고관리자 10-13 2,051
41 [NginX] Codeigniter를 위한 server config 최고관리자 09-09 2,758
40 [Nginx] 역할 최고관리자 09-09 2,710
39 [MySQL] Replace를 이용하여 데이타 내용 치환하기 최고관리자 09-08 1,718
38 [리눅스] Mysql Database 이름을 www.telepasi.com처럼 하면 안됨 최고관리자 09-08 1,673
37 [리눅스] CentOS vsftpd 설치 최고관리자 09-08 1,737
36 [리눅스] 사용자 목록 확인 (Linux User List) 최고관리자 09-08 13,870
35 [NginX] 리버스 프록시(Reverse Proxy)란 최고관리자 09-08 5,114
34 [리눅스] go lang - REST API를 위한 Gin 설치 최고관리자 09-07 1,761
33 [리눅스] go 환경설정 최고관리자 09-07 1,750
32 [리눅스] CentOS7 에서 go Lang 설치하기 최고관리자 09-07 1,718
31 [리눅스] Mysql 원격접속 허용하기 최고관리자 09-07 1,799
30 [서버설치] How to Install PHP 7, NGINX, MySQL on CentOS/RHEL 7.6 최고관리자 09-06 1,782
29 [서버 설치] mysql_secure_installation 최고관리자 09-06 1,719
28 [서버 설치] CentOS7 방화벽 설치 최고관리자 09-06 1,647
27 [DNS] abc.com www.abc.com 레코드 설정 최고관리자 09-05 1,680
26 [리눅스] httpd conf 위치 확인 및 conf 문법검사 명령 최고관리자 09-05 2,398
25 [리눅스] Apache 권한에 대한 참고 사항 최고관리자 09-04 4,394
24 [리눅스] CentOS Apache 주요 디렉토리 최고관리자 09-04 1,848
23 [리눅스] CentOS 6 vs CentOS 7 명령어 대응 최고관리자 09-04 1,918