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
99
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
69
リーダブルコード入門
dmtc
0
150
DB Design Study for Beginners
dmtc
0
120
how to use "slack" in our Hackathon
dmtc
0
290
pitch_codeprep@ventureday
dmtc
0
74
ハッカソン用ピッチフォーマット
dmtc
1
650
Other Decks in Programming
See All in Programming
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
140
What's new in AppKit on macOS 26
1024jp
0
150
Startups on Rails in Past, Present and Future–Irina Nazarova, RailsConf 2025
irinanazarova
0
240
The Modern View Layer Rails Deserves: A Vision For 2025 And Beyond @ RailsConf 2025, Philadelphia, PA
marcoroth
2
720
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
260
Goで作る、開発・CI環境
sin392
0
260
Porting a visionOS App to Android XR
akkeylab
0
680
効率的な開発手段として VRTを活用する
ishkawa
0
160
ソフトウェア品質を数字で捉える技術。事業成長を支えるシステム品質の マネジメント
takuya542
2
15k
ご注文の差分はこちらですか? 〜 AWS CDK のいろいろな差分検出と安全なデプロイ
konokenj
3
570
MDN Web Docs に日本語翻訳でコントリビュートしたくなる
ohmori_yusuke
1
130
GPUを計算資源として使おう!
primenumber
1
240
Featured
See All Featured
Building Adaptive Systems
keathley
43
2.7k
Code Review Best Practice
trishagee
69
19k
A Modern Web Designer's Workflow
chriscoyier
695
190k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
5.9k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
830
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Testing 201, or: Great Expectations
jmmastey
43
7.6k
Making the Leap to Tech Lead
cromwellryan
134
9.4k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
We Have a Design System, Now What?
morganepeng
53
7.7k
The Invisible Side of Design
smashingmag
301
51k
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