반응형

철둥이 6

nginx 포트 분리 방법 (요청에 따라 처리)

cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/custom_port.conf 임의 포트 추가 vi /etc/nginx/conf.d/custom_port.conf server { listen 8443 ssl; server_name xxx.xxx.xxx.xxx; #...(생략) location / { try_files $uri $uri/ /index.php?$arge; } #...(생략) } :wq vi /etc/nginx/conf.d/default.conf server { listen 443 ssl; server_name xxx.xxx.xxx.xxx; #...(생략) # location 블럭 수정 # 기존에 모든 접근에 정상 처리되던 부분 주석 또는 제거. #..

IT 2023.08.10

centos 7 timezone UTC 변경하기

rdate로 time 동기화를 먼저 해준다. yum으로 rdate 설치 - 명령어 yum install rdate -y time 서버와 동기화 - 명령어 rdate -s time.bora.net date 확인. [root@localhost ~]# date 2021. 05. 28. (금) 15:39:02 KST timedatectl 확인. [root@localhost ~]# timedatectl Local time: 금 2021-05-28 15:39:55 KST Universal time: 금 2021-05-28 06:39:55 UTC RTC time: 금 2021-05-28 06:40:10 Time zone: Asia/Seoul (KST, +0900) NTP enabled: yes NTP synchron..

IT 2021.05.28

linux centos 버전 확인/커널 버전 확인/ iso 다운로드 방법

centos 버전 확인 방법 cat /etc/centos-release kernel 버전 확인 방법 uname -r 또는 uname -a centos iso 파일 다운로드 방법 https://www.centos.org/download/ 로 이동. Download As you download and use CentOS Linux, the CentOS Project invites you to be a part of the community as a contributor. There are many ways to contribute to the project, from documentation, QA, and testing to coding changes for SIGs, providing mirroring ..

IT 2021.05.25

centos7 nginx CI (codeigniter) shell_exec() 권한 문제 해결 selinux

해당 문제를 해결하기 위해 거의 1주일가량을 소비했다.. 이러한 문제를 다음에는 좀 더 빠르게 해결할 수 있도록 기록한다. 문제 상황 : 코드이그나이터(codeigniter 3.0)의 controller(. php )에서 shell_exec() 또는 exec() 함수를 사용하여 rm ~ , wget ~ 등의 쉘 명령어를 실행시키려고 하는데 정상적으로 동작하지 않는 문제가 발견됨. os : centos 7 web server : nginx source language : php framework : CI ( codeigniter) database : mysql 여러가지 블로그들과 영어 원문 등을 찾아봤지만 영어를 잘하지도 못하고 배움도 얕아서 한참 헤맸다.. chmod, chown, chcon 명령어로 권..

IT 2021.05.07
반응형