일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 램가스초월
- 킹북이초월
- KB국민카드
- jQuery
- PHP-FPM
- 아파치
- centos
- 보르비스초월
- 가상서버호스팅
- 자바스크립트
- 티스토리
- 윈도우10
- Rocky
- 소비전력
- Apache
- KB증권
- proxmox
- 스톤에이지
- 시놀로지
- 리눅스
- 알리익스프레스
- 복현오거리
- iptime
- mysql
- SKT
- OpenWrt
- php
- 알뜰폰
- 라즈베리파이2
- ConoHa
- Today
- Total
목록분류 전체보기 (1108)
맛집 여행 캠핑 일상 생활
Apache CPU 제한 옵션 ( 점유율인 줄 알았는데 시간제한인 것 같다. )RLimitCPU DirectiveDescription:Limits the CPU consumption of processes launched by Apache childrenSyntax:RLimitCPU seconds|max [seconds|max]Default:Unset; uses operating system defaultsContext:server config, virtual host, directory, .htaccessOverride:AllStatus:CoreModule:core 메모리 제한 옵션 ( 제한을 걸면 좋긴하겠지만 메모리를 많이 먹는 부분에서는 에러가 날 것 같다. )RLimitMEM DirectiveDe..
휴대폰인증 같은걸로 해도 공인인증서액티브엑스 필요없을듯한데 아무리봐도 기득권 같은게 있는가 보다~~~공공기관 홈페이지부터 바뀌어야 할텐데리눅스에서도 사용이 가능하도록 보안 프로그램 설치 더 복잡해져 …"인터넷 결제 불편 여전" 금융권, 대안으로 'EXE' 도입…각종 프로그램 설치 요구 논란 키보드보안·방화벽·백신 등 '보안 3종세트' 고집 여전 모바일 앱 개발비 2~3배 상승…핀테크 발전 막는 장벽으로 하략 http://m.news.naver.com/read.nhn?sid1=105&oid=015&aid=0003541926
특허괴물에게 당했군.. 삼성한테 얼마전에 받은 돈에 더 보태서 물어주면 될듯... http://m.news.naver.com/read.nhn?sid1=105&oid=001&aid=0008169429
아파치 Deflate Expires 설정으로 트래픽 줄이기 아파치 모듈중에 mod_deflate 가 있다. 컨텐츠를 압축해서 전송해주는 방법이다.압축해서 전송하면 브라우저가 알아서 압축을 풀어서 보는 방식이다. ● mod_deflate 모듈 설정SetOutputFilter DEFLATEAddOutputFilterByType DEFLATE text/cssAddOutputFilterByType DEFLATE text/htmlAddOutputFilterByType DEFLATE text/javascriptAddOutputFilterByType DEFLATE text/plainAddOutputFilterByType DEFLATE text/xmlAddOutputFilterByType DEFLATE image/sv..
아파치 mod_cache 모듈 설정하기 ● mod_cache 설정 CacheEnable disk / CacheRoot /var/cache/mod_cache/tmp CacheDirLevels 2 CacheDirLength 1 CacheMaxFileSize 300000 CacheMinFileSize 1 #CacheIgnoreCacheControl On CacheIgnoreNoLastMod On CacheIgnoreQueryString Off CacheIgnoreHeaders None CacheLastModifiedFactor 0.1 CacheDefaultExpire 300 CacheMaxExpire 86400 #CacheStoreNoStore On #CacheStorePrivate On /var/cache/..
아파치 WebDAV 설정 방법 1. vi /etc/httpd/conf.d/webdav.conf 아래 내용 생성 (전체서비스) Alias /webdav /var/www/webdav #Options Indexes MultiViews AllowOverride None DAV On AuthName "WebDAV Login" AuthType Basic AuthUserFile /var/www/auth/.htpasswd Require valid-user Order deny,allow Deny from all Allow from 192.168.1. "Require valid-user" 대신에 "Require user 계정" 을 넣을 수도 있다. 지정한 계정만 접근하게 한다는 의미이다."Allow from 192.168..
리눅스 IPTABLES 사용방법포트 추가, PING 차단, syn-flood 차단, DDOS 차단, 특정 IP 차단에 대해서 알아보자. 테스트 환경 : CentOS 6.3 64bit ▶ iptables 포트 추가 iptables -I INPUT -m tcp -p tcp --dport 21 -j ACCEPTiptables -I INPUT -m tcp -p tcp --dport 25 -j ACCEPTiptables -I INPUT -m tcp -p tcp --dport 53 -j ACCEPTiptables -I INPUT -m udp -p udp --dport 53 -j ACCEPTiptables -I INPUT -m multiport -p tcp --dports 80,443 -j ACCEPTiptables..
서버 부팅시 자동실행 되는 데몬을 설정해주는 방법 chkconfig --level 2345 auditd on chkconfig --level 2345 fcoe off chkconfig --level 2345 httpd on chkconfig --level 2345 ip6tables off chkconfig --level 2345 iptables on chkconfig --level 2345 iscsi off chkconfig --level 2345 iscsid off chkconfig --level 2345 lldpad off chkconfig --level 2345 mysqld on chkconfig --level 2345 named on chkconfig --level 2345 netfs on chk..
서버 하나에 apache 를 여러개 서비스 하는 쉘스크립트포트는 다 달라야 합니다.SERVICE_ID 에 숫자 변경 필요(중복되면 안되요)SERVICE_PORT 에 숫자 변경 필요(중복되면 안되요) 테스트 환경 : CentOS 6.3 64bit 아래의 코드를 쉘스크립트에 저장해서 실행해주면 된다.#!/bin/sh SERVICE_ID="2"SERVICE_PORT="8080" cp /usr/sbin/apachectl /usr/sbin/apachectl${SERVICE_ID}cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd${SERVICE_ID}.confsed -i s/"HTTPD='\/usr\/sbin\/httpd'"/"HTTPD='\/usr\/sbin\/httpd..
현재 서비스 되고 있는 클라우드는 여러 종류가 있습니다. 구글드라이브, 드롭박스, 박스, N드라이브, T클라우드, U클라우드, U+Box, 스카이드라이브 등 다양한 클라우드가 있습니다. 이 중에서 PC의 네트워크 드라이브로 연결할 수 있는 WebDAV 프로토콜을 지원하는 클라우드는 구글드라이브, 드롭박스, 박스 등이 있으며,가입만 하면 WebDAV를 바로 사용할 수 있는 것은 박스입니다.구글의 G드라이브는 http://dav-pocket.appspot.com 에서 Sign Up을 통해서 사용이 가능하며,드롭박스는 http://dav.dropdav.com 에서 Sign Up을 통해서 사용이 가능합니다. WebDAV 연결 방법은 윈도우에서는 NetDrive 등을 이용하여 네트워크 드라이브로 연결할 수 있으며..