Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- vsftpd
- YouTube
- phpmyadmin
- letsencrypt
- nginx
- 8443
- db
- youtube-dl
- haproxy
- https
- ubuntu
- docker-compose
- SSL
- haproxy.cfg
- 인증서
- docker
- 도커
- firewall
- mount
- centos7
- mysql
- Cent
- yum
- iptables
- Maria
- HLS
- CentOS
- 방화벽
- MariaDB
- Tomcat
Archives
- Today
- Total
목록ip2location (1)
개발자의뇌
node 사용하여 ip to location 서버 만들기
# CentOS7 nvm 설치 node version manager wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash # nvm 설치 후 reboot reboot # nvm 으로 노드 설치 버전 목록 확인 nvm ls-remote # nvm 특정 버전 설치 nvm install 14.16.1 # nvm 특정 버전 사용 nvm use 14.16.1 # node 버전 확인 node --version # ip-to-locatino 모듈 설치 npm install ip-to-location --save # express 모듈 설치 npm install express --save # vi svr.js const expr..
개발/Linux
2021. 4. 12. 17:54