일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- CentOS 6.10
- PHP 5.2.17 .ini
- vim color scheme
- httpd-autoindex.conf
- httpd-vhosts.conf
- mod_unique_id
- httpd-dav.conf
- httpd-info.conf
- httpd-default.conf
- PHP 5.2 .ini
- httpd 2.2.32
- epel repository
- apache 연동
- Node.js 소스 설치
- httpd.conf
- Node.js apache 연동
- python 3.5.10
- Mod_Security 룰 셋
- jQuery
- vimrc 옵션
- gcc update
- CentOS 6
- unique_id
- Repository
- CentOS
- MySQL 5.1.41
- httpd-mpm.conf
- python 3.X 소스 설치
- node.js
- Today
- Total
목록Sever/CentOS 6.10 (18)
곰시기's
## Rewrite module Options FollowSymLinks AllowOverride None Order allow,deny Allow from all RewriteEngine On # RewriteLog logs/rewrite.log # RewriteLogLevel 9 RewriteBase / # 일 경우 RewriteBase는 /asd/ RewriteCond %{REQUEST_FILENAME} !-f # 요청된 주소에 해당하는 파일(-f) 없거나, RewriteCond %{REQUEST_FILENAME} !-d # 요청된 주소에 해당하는 디렉터리(-d) 없거나, RewriteCond %{REQUEST_FILENAME} !-l # 요청된 주소에 해당하는 링크(-l) 없으면, # Rewrit..
##### [ Repository 구축 ] ##### [root@localhost ~]# cd /media/ [root@localhost media]# mkdir -m 755 mnt // 마운트 디렉터리 생성 [root@localhost media]# yum -y install createrepo yum-utils // repo 구성을 위한 패키지 설치 [root@localhost media]# cd /usr/tmp/ [root@localhost tmp]# mkdir -m 755 iso // iso파일을 받을 디렉터리 생성 [root@localhost tmp]# cd iso/ [root@localhost iso]# wget https://vault.centos.org/6.10/isos/x86_64/Cen..
CentOS 6.10 의 지원 종료... CentOS 6.10은 2020년 11월 30일 부로 지원이 종료 되어 카카오에서 제공하는 미러를 사용할 수 없게 되어 Repository를 변경 한다. [root@localhost ~]# cd /etc/yum.repos.d/ [root@localhost yum.repos.d]# cp repo.repo repo_kakao.repo // 기존 repository 백업 [root@localhost yum.repos.d]# vi repo.repo // repository 파일 오픈 [base] name=CentOS-$releasever - Base baseurl=https://vault.centos.org/centos/$releasever/os/$basearch/ #b..

설정 전에... SSL이란? 인터넷 상에서 데이터를 안전하게 전송하기 위한 인터넷 암호화 통신 프로토콜을 말하며, CA( Certificate Authority )라고 불리는 서드 파티로부터 서버와 클라이언트의 인증을 하는데 사용된다. 좀 더 자세한 사항은 여기에 잘 정리되어있다. 모듈 설치 openssl 설치 확인 [root@localhost ~]# yum list installed | grep openssl openssl.x86_64 1.0.1e-58.el6_10 @updates // 이와 같은 항목이 뜨지 않는다면 openssl-devel.x86_64 1.0.1e-58.el6_10 @updates // 설치가 안된 것, 아래와 같이 설치 [root@localhost ~]# yum -y install..