Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- referrer
- Apache
- nginx
- Let's Encrypt
- 크로스도메인
- VirtualHost
- address
- php
- 환경개선부담금
- geocode
- php7.2
- httpd
- 경유
- 가상호스트
- SSL
- VPS
- config.inc.php
- phpMyAdmin
- Apach
- vsftp
- API
- MariaDB
- Certbot
- cross domain
- centos
- Widget
- ko_KR.utf8
- Linux
- web
- locale
Archives
- Today
- Total
Crispfeel
Nginx virtualhost 가상호스트 설정 본문
- 공통으로 사용할 설정을 만들어 줍니다.
- vi /etc/nginx/default.d/default.conf
-- index index.php default.php index.html default.html;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
client_max_body_size 20M;
- 가상호스트를 만들어 줍니다.
- vi /etc/nginx/conf.d/vhost.conf
--server {
listen 80;
server_name abcd.com www.abcd.com;
root /home/abcd/www;
include /etc/nginx/default.d/*.conf;
}
- systemctl restart nginx
전 로그설정이나 오류페이지 설정을 하지 않았지만 필요하신경우는 nginx.conf.default 문서를 참조하여 추가해주시면 됩니다.
'CentOS' 카테고리의 다른 글
yum 업데이트시 Failed to set locale, defaulting to C.UTF-8 에러 (0) | 2020.02.05 |
---|---|
VPS 초기 세팅 정리 (0) | 2020.02.04 |
certbot 활용 Let's Encrypt 무료 SSL 인증서 설치 (0) | 2019.07.04 |