목록분류 전체보기 (39)
우도비
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04 Introduction Let’s Encrypt is a Certificate Authority (CA) that provides an easy way to obtain and install free TLS/SSL certificates, thereby enabling encrypted HTTPS on web servers. It simplifies the process by providing a software client, Certbot, that attempts to automate most (if not all) ..
https://www.robinwieruch.de/minimal-node-js-babel-setup/ I have always been of the understanding there are no common sense rules about how to create a minimal Node.js application with Babel. In my search for these answers, it seemed that every tutorial I came across showed something different. As a result, I wanted to streamline this project setup for my readers and myself, so I developed a comm..
https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04 How To Secure Nginx with Let's Encrypt on Ubuntu 16.04UpdatedOctober 27, 2017 1.2mviews NGINX LET'S ENCRYPT SECURITY UBUNTU 16.04Mitchell AnicasNot using Ubuntu 16.04? Choose a different version:CentOS 7Debian 9Debian 8Ubuntu 18.04Ubuntu 14.04Automated: DockerrequestAutomated: BashrequestAutom..
lf로 변경find . -print | xargs dos2unix crlf로 변경find . -print | xargs unxi2dos
pm2 start app.jspm2 start app.js --watchpm2 show 0pm2 monitpm2 list
https://gorkem1.gitbooks.io/visual-studio-code-for-java/chapter-1/Maven-Create.html Creating Your Project with MavenJava extension can use information contained on Maven build artifacts to extract information such as the location of source files, dependencies and compiler preferences. Most convenient way to start developing a Java project using VS Code and Maven is to create a project using mave..
$ vi ~/.gitignore 이렇게 추가해 줍니다. .svn.DS_Storebuildxcuserdata 그리고, $ git config --global core.excludesfile ~/.gitignore 이렇게 실행해 줍니다.확인해 보시면, $ cat .gitconfig [core] quotepath = false excludesfile = /Users/userid/.gitignore[user] name = Gyuha Shin email = userid@mail.com
git config --global user.name "이름"git config --global user.email "깃허브 메일주소" // 매번 물어보는 귀찮음을 피하기 위해 설정. mkdir ~/MyProject // 로컬 디렉토리 만들고cd ~/myproject // 디렉토리로 들어가서git init // 깃 명령어를 사용할 수 있는 디렉토리로 만든다.git status // 현재 상태를 훑어보고git add 화일명.확장자 // 깃 주목 리스트에 화일을 추가하고 orgit add . // 이 명령은 현재 디렉토리의 모든 화일을 추가할 수 있다.git commit -m “현재형으로 설명” // 커밋해서 스냅샷을 찍는다. git remote add origin https://github.com/user..
https://github.com/nodesource/distributions 위 사이트에서 버전별로 설치 가능 현재 node.js 6.x 버전에서 node.js 8.x(stable) 로 올림 curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash - sudo apt-get install -y nodejs
vue init webpack-simple 으로 만든 템플릿만든후 테스트 서버 포트변경하는 방법 When using the webpack-simple template, you can add a "port" property to the devServer object in webpack.config.js and assign it to whatever value you want, like so:devServer: { historyApiFallback: true, noInfo: true, port: 9080 },