WEB
- html
- css
- javascript
- deeperjs
- node.js
- site
- web
- wish list
1.web의 동작 원리
*같은 네트워크 안에서
Web Browser(IP)
index.html(IP)
---------->
request
<----------
response
Web Server
index.html(IP)
2.web 운영
- web hosting(회사에게 대리) vs web server(직접)
- static web hosting vs dynamic web hosting
- WEB hosting
- http://www.bitballoon.com/
- http://neocities.org/
- Amazon S3
- Google Cloud Storage
- Azure Blob
- WEB server
- Apache - open source/free
- IIS
- Nginx
- How to install Apache http server in (window/linux/mac)
1.window
BitNami Wamp stack(쉽게 까는법)
wamp:Window Apache Mysql Php
web server 운영
- http://127.0.0.1/index.html
127.0.0.1:웹브라우저가 설치되있는 자신의 컴퓨터의 웹서버 주소
index.html:웹서버는 HTDOCS에서 이 파일을 찾아준다(디폴트)
- http://(HyperTextTransferProtocol) vs file://
Hyper Text = web page
Transfer = 전송
Protocol = 규약, 약속
=>web page를 web browser와 web server가 서로 주고받기 위한 약속
http://(웹서버에서 가져옴)
file://(디렉토리에서 직접 가져옴)