일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- file access
- Encapusulation
- flutter
- aduino
- atmega328
- parameter
- APP
- SERIAL
- stream
- java
- compare
- Contour
- Class
- Overloading
- Binary
- Android
- UNO
- memory
- length
- preprocessing
- digitalRead
- mfc
- public
- Pointer
- Unity
- wpf
- sensor
- Barcode
- inheritance
- Read
Archives
- Today
- Total
목록nginx (2)
폴크(FOLC)
LEMP stack 개발 환경 구성
PC 환경에 LEMP stack 을 구성하기 위해서는 4가지 S/W 가 필요하다. 1. Linux OS # Ubuntu Desktop 20.04 LTS (2.7GB) # 리눅스 형태는 무수히 존재하므로 원하는 버전을 선택한다. 2. NginX+ # Web & Mobile Applications # MySQL 과 동일한 Interface 를 제공하면서도 무료버전이다. 3. MariaDB # Server 10.5.11 # OS(Linux) 에 맞추어 선택한다. 4. PHP # Current Stable PHP 7.4.21 # 7.0 이상 버전을 선택한다. 7.0 이상 부터는 modern PHP 로 분리된다.
LEMP stack/LEMP stack 사용법
2021. 7. 3. 12:37
LEMP stack 란?
> 서버운영에 자주 같이 쓰이는 소프트웨어들의 약자이며 웹서버를 구성하기 위한 최소한의 요소다. # 최근에 많은 서버운영 구성 요소로 LAMP 에서 LEMP 로 이동하고 있는 추세이다. 1. LAMP stack # Linux(OS) + Apache(Web Server) + Mysql,MariaDB(RDBMS) + PHP,Perl,Python(Web Page) 2. LEMP stack # Linux(OS) + NginX(Web Server) + Mysql,MariaDB(RDBMS) + PHP,Perl,Python(Web Page) > LAMP stack 의 Web Server 부분을 교체하여 LEMP stack 만듬 # Apache -> NginX 로 교채 하면서 C10K 문제점을 해결 *. C10K : ..
LEMP stack/LEMP stack 란?
2021. 7. 3. 12:12