본문 바로가기
반응형

linux26

ssh Permission denied (publickey,gssapi-keyex,gssapi-with-mic) ssh-keygen 명령어를 이용하여 공개키와 비공개키를 생성한다. $ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/webdev/.ssh/id_rsa): /home/webdev/temp/id_rsa Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/webdev/temp/id_rsa. Your public key has been saved in /home/webdev/temp/id_rsa.pub. The key fi.. 2022. 6. 28.
nginx location 정규식 적용 nginx try_files 구문 nginx.org/en/docs/http/ngx_http_core_module.html#try_files server { listen 80; server_name karint.me; location ~ ^/public/css/(.+)$ { root c:/work/source/karint/web/src/main/resources/public/css; try_files /public/css/$1 /public/$1 /$1 =404; } location ~ ^/public/(.+)/(.+)$ { root c:/work/source/karint/web/src/main/resources/public/; try_files /public/$1/$2 /public/$1/common/$.. 2021. 1. 14.
gradlew 프록시 설정 gradle proxy 관련 공식 문서 docs.gradle.org/current/userguide/build_environment.html#sec:accessing_the_web_via_a_proxy Build Environment Configuring an HTTP or HTTPS proxy (for downloading dependencies, for example) is done via standard JVM system properties. These properties can be set directly in the build script; for example, setting the HTTP proxy host would be done with System.setPrope docs.gradl.. 2021. 1. 13.
docker-compose network 설정 docker-compose를 이용하여 네트워크 생성 아래 소스는 nginx 와 spring boot를 연동하여 하나의 네트워크를 구성하는 방법이다. 네트워크는 192.168.14.0 대역으로 사용하도록 설정했다. 참고 : youngmind.tistory.com/entry/%EB%8F%84%EC%BB%A4-%EA%B0%95%EC%A2%8C-3-%EB%8F%84%EC%BB%A4-%EB%84%A4%ED%8A%B8%EC%9B%8C%ED%81%AC-1 2020. 9. 22.
반응형