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
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
78
リーダブルコード入門
dmtc
0
160
DB Design Study for Beginners
dmtc
0
120
how to use "slack" in our Hackathon
dmtc
0
300
pitch_codeprep@ventureday
dmtc
0
79
ハッカソン用ピッチフォーマット
dmtc
1
660
Other Decks in Programming
See All in Programming
はじめてのDSPy - 言語モデルを『プロンプト』ではなく『プログラミング』するための仕組み
masahiro_nishimi
4
17k
Vueのバリデーション、結局どれを選べばいい? ― 自作バリデーションの限界と、脱却までの道のり ― / Which Vue Validation Library Should We Really Use? The Limits of Self-Made Validation and How I Finally Moved On
neginasu
2
1.7k
AI Agent 時代的開發者生存指南
eddie
4
2.2k
GC25 Recap: The Code You Reviewed is Not the Code You Built / #newt_gophercon_tour
mazrean
0
130
モテるデスク環境
mozumasu
3
1.4k
品質ワークショップをやってみた
nealle
0
650
オープンソースソフトウェアへの解像度🔬
utam0k
17
3.2k
TFLintカスタムプラグインで始める Terraformコード品質管理
bells17
2
480
Pythonに漸進的に型をつける
nealle
1
140
PHPに関数型の魂を宿す〜PHP 8.5 で実現する堅牢なコードとは〜 #phpcon_hiroshima / phpcon-hiroshima-2025
shogogg
1
350
ALL CODE BASE ARE BELONG TO STUDY
uzulla
28
6.8k
Introduce Hono CLI
yusukebe
6
3.2k
Featured
See All Featured
Context Engineering - Making Every Token Count
addyosmani
8
310
Designing for Performance
lara
610
69k
Build your cross-platform service in a week with App Engine
jlugia
234
18k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
Site-Speed That Sticks
csswizardry
13
930
KATA
mclloyd
PRO
32
15k
The Invisible Side of Design
smashingmag
302
51k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
The Cost Of JavaScript in 2023
addyosmani
55
9.1k
The Art of Programming - Codeland 2020
erikaheidi
56
14k
How to train your dragon (web standard)
notwaldorf
97
6.3k
Git: the NoSQL Database
bkeepers
PRO
431
66k
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