[AWS] 키페어 추가 등록

키파일 생성하기 네트워크 및 보안 > 키 페어 > 키페어 생성 > 이름입력 > 키페어 유형(RSA) 체크 > 프라이빗 키 파일 형식 .pem 체크 > 키 페어 생성 버튼 클릭…

0 Comments

[netplan] goodzz 서버 고정 아이피 설정

goodzz.site 는 유선이 아닌 와이파이로 설정 되어 있음. vi /etc/netplan/00-installer-config-wifi.yaml # This is the network config written by 'subiquity' network: version: 2 wifis: wlp3s0: access-points: dhlee_5G: password: 01053896308#h dhcp4: no…

1 Comment

[nginx] 접근 제한

https://minholee93.tistory.com/entry/Nginx-Basic-Auth https://sangchul.kr/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-nginx-ip-%EC%A0%9C%ED%95%9C%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95 https://www.kyrandia.net/2012/03/nginx-htaccess.html https://mail.bada-ie.com/board/view/?page=3&uid=1313&category_code=jvYw%7C%7CJCpJ%7C%7C&code=all&key=&keyfield= 우분투에서 htpasswd 사용하기 위해 설치 apt-get install apache2-utils

0 Comments

[Classic ASP] 트랜잭션

DB.Errors.clear DB.BeginTrans '트랜잭션 시작 DB.Execute (SQL) 'Execute if DB.Errors.count>0 Then DB.RollbackTrans '에러가 발생한다면 트랜잭션 롤백시킨다. Set objError = Server.CreateObject("ADODB.Error") for each objError in DB.Errors Msg (objerror.Description) '에러문 출력 Next objError.close…

0 Comments

[Classic ASP] 내장 함수 모음

abs() '절대값구하기' array(배열) '배열을 반환' asc() '문자의 ANSI문자값을 반환' atn() '아크 탄젠트로 반환' cbool() 'boolean형식으로 반환' cbyte() 'byte형식으로 반환' ccur() 'currency형식으로 반환' cdate() 'date형식으로 반환' cdbl() 'double형식으로 반환' chr() 'asc()함수의…

0 Comments

[Classic ASP] 스트림을 이용한 파일 다운로드

<% Response.Expires = 0 Response.Buffer = True Response.Clear dir = request("dir") filename = request("filename") filepath = Server.MapPath("\webfs\") & "\Common\etcFiles\"&dir&"\" & filename set objFS = Server.CreateObject("Scripting.FileSystemObject") If objFS.FileExists(filepath) Then Response.ContentType =…

2 Comments

End of content

No more pages to load