Mysql 1:n(1:多) 하나의 필드에 표현 2018년 12월 10일2018년 12월 19일admin Comment 1. main table : phone_spec – 1 2. sub table : phone_color – n(多) 3. group_concat 사용 select group_concat(t2.colorname SEPARATOR ‘||’) as c_colorname, [...]
aws pem keyfile 사용 하기 2018년 11월 12일admin Comment 외부 linux 시스템에서 aws ec2 linux 접근시 pem key 파일 사용하기 puttygen 프로그램으로 private keyfile 생성 후 (ppk) ssh : ssh -i /path/to/private/keyfile [...]
Nginx HTTP AUTH 2018년 10월 12일2018년 11월 5일admin Comment 1. NGINX CONF location “~^/html/.*” { try_files $uri $uri/ =404; auth_basic “Restricted Content”; auth_basic_user_file /usr/local/nginx/conf/auth/.htpasswd; } 2. 계정 파일 생성 # sudo htpasswd [...]
[python] telegram bot 으로 서버 상태 알림 받기(cpu, memory, php-fpm) 2018년 3월 26일2020년 8월 9일admin 1 telegram bot 으로 서버 상태 알림 받기(cpu, memory, php-fpm) 참고 : https://core.telegram.org/ https://github.com/php-telegram-bot/core http://devhicom.tistory.com/12 1. telegram bot 생성 1) telegram 연락처에서 @BotFather 친구추가 [...]
wordpress 미디어 추가(Add Media) 버튼 사용하기 2018년 3월 6일2018년 3월 30일admin Comment wordpress 기능 중에 미디어 – 첨부파일 기능을 자체 제작 하는 플러그인에 사용하기 1. wp_enqueue_media 추가 // add button media add_action ( ‘admin_enqueue_scripts’, function () [...]