[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

[CSS] focus outline

/* 키보드로 버튼에 포커스 시 */ a.menu-link:focus-visible { outline: 3px solid #000; } /* 마우스, 터치로 버튼에 포커스 시 */ a.menu-link:focus:not(:focus-visible) { outline: none; box-shadow: 1px 1px 5px rgba(1, 1,…

0 Comments

[ATOM] 에디터 패키지 수동 설치

git 설치 터미널(CMD) 오픈 //경로로 이동 cd ~/.atom/packages/ //git 페이지에서 해당 패키지 주소 복사 후 터미널에 입력 git clone https://github.com/icetee/remote-ftp.git //해당 패키지 경로로 이동 후 npm install cd ./remote-ftp npm…

0 Comments

[우분투] https Open SSL적용

원문 : https://syudal.tistory.com/entry/Ubuntu-Nginx-Lets-Encrypt%EB%A1%9C-https-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0 1. CertBot 다운로드 Certbot의 Repo를 등록, 해당 패키지를 다운로드 $ sudo add-apt-repository ppa:certbot/certbot $ sudo apt-get install python3-certbot-nginx 2. SSL 인증서를 적용하여 https 적용하기 $ sudo certbot…

7 Comments

End of content

No more pages to load