WEB

  1. html
  2. css
  3. javascript
  4. deeperjs
  5. node.js
  6. site
  7. web
  8. wish list

1.web의 동작 원리

    *같은 네트워크 안에서 Web Browser(IP) index.html(IP) ----------> request <---------- response Web Server index.html(IP)

2.web 운영

  1. web hosting(회사에게 대리) vs web server(직접)
  2. static web hosting vs dynamic web hosting
  3. WEB hosting
    1. http://www.bitballoon.com/
    2. http://neocities.org/
    3. Amazon S3
    4. Google Cloud Storage
    5. Azure Blob
  4. WEB server
    1. Apache - open source/free
    2. IIS
    3. Nginx
  5. How to install Apache http server in (window/linux/mac)
    1.window
    BitNami Wamp stack(쉽게 까는법)
    wamp:Window Apache Mysql Php

web server 운영

  1. http://127.0.0.1/index.html
    127.0.0.1:웹브라우저가 설치되있는 자신의 컴퓨터의 웹서버 주소
    index.html:웹서버는 HTDOCS에서 이 파일을 찾아준다(디폴트)
  2. http://(HyperTextTransferProtocol) vs file://
    Hyper Text = web page
    Transfer = 전송
    Protocol = 규약, 약속
    =>web page를 web browser와 web server가 서로 주고받기 위한 약속 http://(웹서버에서 가져옴)
    file://(디렉토리에서 직접 가져옴)