Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Web Server Study for Beginners
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
DMTC
September 10, 2014
Programming
0
110
Web Server Study for Beginners
Web Server 入門で使った勉強会のスライド
DMTC
September 10, 2014
Tweet
Share
More Decks by DMTC
See All by DMTC
Framework Study for Beginners
dmtc
0
93
リーダブルコード入門
dmtc
0
170
DB Design Study for Beginners
dmtc
0
140
how to use "slack" in our Hackathon
dmtc
0
310
pitch_codeprep@ventureday
dmtc
0
85
ハッカソン用ピッチフォーマット
dmtc
1
690
Other Decks in Programming
See All in Programming
20260315 AWSなんもわからん🥲
chiilog
2
160
[SF Ruby Feb'26] The Silicon Heel
palkan
0
110
へんな働き方
yusukebe
4
2.4k
技術検証結果の整理と解析をAIに任せよう!
keisukeikeda
0
130
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
4
1.4k
モックわからないマン卒業記 ~振る舞いを起点に見直した、フロントエンドテストにおけるモックの使いどころ~
tasukuwatanabe
3
390
PHPのバージョンアップ時にも役立ったAST(2026年版)
matsuo_atsushi
0
130
CSC307 Lecture 15
javiergs
PRO
0
260
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
6
2k
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
190
ロボットのための工場に灯りは要らない
watany
11
3k
Kubernetesでセルフホストが簡単なNewSQLを求めて / Seeking a NewSQL Database That's Simple to Self-Host on Kubernetes
nnaka2992
0
150
Featured
See All Featured
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
37
6.3k
Accessibility Awareness
sabderemane
0
82
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.3k
From π to Pie charts
rasagy
0
150
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
980
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.3k
Leveraging Curiosity to Care for An Aging Population
cassininazir
1
190
Design of three-dimensional binary manipulators for pick-and-place task avoiding obstacles (IECON2024)
konakalab
0
380
A designer walks into a library…
pauljervisheath
210
24k
Documentation Writing (for coders)
carmenintech
77
5.3k
Highjacked: Video Game Concept Design
rkendrick25
PRO
1
320
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Transcript
8FC4FSWFSೖ givery Inc. ⼩小⽥田 崇之 2014/09/10
⼩小⽥田 崇之 (Takayuki Oda) p giveryとの関係 n givery Inc. 内定者
n エンジニア n DMTCで技術メンターとか p 技術の話 n サーバーサイドがメイン n vim も emacs も好きです p 趣味の話 n 乗⾺馬キャンプのカウンセラー n ボルダリングにはまりそう 2014/08/27
今回する事,話す事 p Web Server とはなにか? p サーバーとのやり取りを⾒見見よう p 実際にサーバーを建ててみよう 2014/09/10
今⽇日の内容: Database ⼊入⾨門 p ⾃自⼰己紹介 p Web Server ってなに?
p 実際に⾒見見てみよう p 実際に建ててみよう 2014/08/27
今⽇日の内容: Database ⼊入⾨門 p ⾃自⼰己紹介 p Web Server ってなに?
p 実際に⾒見見てみよう p 実際に建ててみよう 2014/08/27
うぇぶさーばーってなんなん? 2014/08/27
Web Server とは p なに? n アプリケーション p どんな? n ルールに沿ってデータを返す
p どういうルール? n HTTP っていう名前のルール 2014/09/10
HTTP って? 2014/08/27
Hypertext Transfer Protocol (HTTP) p ネットワーク越しのファイル転送ルール p リクエスト と レスポンス
p 8つの通信タイプ (HTTPのメソッド) n GET, POST n PUT, HEAD, DELETE, OPTION, TRACE, CONNECT p 今の主流流はGET と POST 2014/09/10
GET と POST 2014/08/27
GET と POST p GET: データの受信 n オプションをURLの後ろに付ける n Google
検索索とか p POST: データの送信 n オプションをリクエストボディに⼊入れる n ユーザーのログインとか 2014/09/10
今⽇日の内容: Database ⼊入⾨門 p ⾃自⼰己紹介 p Web Server ってなに?
p 実際に⾒見見てみよう p 実際に建ててみよう 2014/08/27
要素を調査 2014/09/10
リクエストの中⾝身 2014/09/10
今⽇日の内容: Database ⼊入⾨門 p ⾃自⼰己紹介 p Web Server ってなに?
p 実際に⾒見見てみよう p 実際に建ててみよう 2014/08/27
Document Root p http://localhost でアクセスされる場所 p Windows (XAMPP) n C:\xampp\htdocs
p Mac (MAMP) n /Application/MAMP/htdocs 2014/09/10