일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 보르비스초월
- ConoHa
- 자바스크립트
- iptime
- Apache
- 티스토리
- 킹북이초월
- KB증권
- mysql
- Rocky
- 라즈베리파이2
- proxmox
- OpenWrt
- 알리익스프레스
- 스톤에이지
- PHP-FPM
- 윈도우10
- php
- 알뜰폰
- 시놀로지
- jQuery
- KB국민카드
- 복현오거리
- 리눅스
- 램가스초월
- 가상서버호스팅
- 소비전력
- SKT
- centos
- 아파치
- Today
- Total
맛집 여행 캠핑 일상 생활
[NGINX] VirtualHost 도메인별 유저설정 본문
728x90
아파치에서는 mod_ruid2 모듈이 있어서 각 도메인 마다 사용자 권한 설정이 가능합니다.
NGINX 에서는 디폴트가 nginx 인데 이를 user, group 을 설정할 수가 있습니다.
cp /etc/opt/remi/php72/php-fpm.d/www.conf /etc/opt/remi/php72/php-fpm.d/example.conf
기존 파일을 하나 복사해서 편집합니다.
참고로 PHP Multiple 버전으로 사용도 가능합니다.
[www]
==>
[www.example.com]
user = apache
group = apache
==>
user = example
group = example
listen = 127.0.0.1:9000
==>
listen = 127.0.0.1:9001
포트는 각 유저당 1개씩 사용이 됩니다.
vi /etc/nginx/conf.d/example.conf
server {
listen 80;
server_name www.example.com;
root /home/example/www;
index index.php index.html index.htm;
access_log /var/log/nginx/access-example.log;
error_log /var/log/nginx/error-example.log;
location / {
index index.html index.htm index.php;
}
location ~ [^/]\.(php|htm|html)(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
fastcgi_pass 이 부분을 찾아서 포트번호를 적어줍니다.
아파치 설정 방법은 itrooms.tistory.com/976 여기를 참고하세요~
728x90
반응형
'IT이야기' 카테고리의 다른 글
[CentOS] PHP session_start Permission denied (0) | 2020.07.30 |
---|---|
Apache + PHP 여러 버전 사용 설정 방법 (0) | 2020.07.28 |
[CentOS] mod_fcgid MaxRequestLen 오류 (0) | 2020.07.22 |
[iptables] SSH Brute Force Attack & DDOS 방지 (0) | 2020.07.21 |
[CentOS] 7.x yum yum.repo.d 파일을 지웠을때 (0) | 2020.07.20 |
Trackback : | Comments :