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
在 Google Cloud Platform 架設你的網站伺服器並撰寫 Node.js 應用程式
Search
chph
September 01, 2017
Technology
0
690
在 Google Cloud Platform 架設你的網站伺服器並撰寫 Node.js 應用程式
afu @ PIXNET 前端團隊 2017.09.01
chph
September 01, 2017
Tweet
Share
More Decks by chph
See All by chph
Chrome Dev Tools 基礎技巧
chph
0
89
DevOpsDays Taipei 2017 敏捷思維分享
chph
0
100
Intro to Progressive Web Apps
chph
1
63
淺談 Gzip
chph
0
130
Install WordPress on Linode
chph
0
160
Introduction Infrastructure - Linode 入門
chph
0
220
高速傳愛~三小時進化 PWA
chph
0
290
Optimize JavaScript execution and parse time using optimize-js
chph
0
150
Modern Web 2016 議程分享: 網站自動化測試 - 以 PIXNET 搜尋 & 美妝口碑大賞為例
chph
0
120
Other Decks in Technology
See All in Technology
定期的な価値提供だけじゃない、スクラムが導くチームの共創化 / 20251004 Naoki Takahashi
shift_evolve
PRO
4
360
KMP の Swift export
kokihirokawa
0
350
ガバメントクラウド(AWS)へのデータ移行戦略の立て方【虎の巻】 / 20251011 Mitsutosi Matsuo
shift_evolve
PRO
2
180
Modern_Data_Stack最新動向クイズ_買収_AI_激動の2025年_.pdf
sagara
0
240
Wasmのエコシステムを使った ツール作成方法
askua
0
110
AI時代だからこそ考える、僕らが本当につくりたいスクラムチーム / A Scrum Team we really want to create in this AI era
takaking22
7
4k
英語は話せません!それでも海外チームと信頼関係を作るため、対話を重ねた2ヶ月間のまなび
niioka_97
0
130
OCI Network Firewall 概要
oracle4engineer
PRO
2
7.8k
研究開発部メンバーの働き⽅ / Sansan R&D Profile
sansan33
PRO
3
20k
JAZUG 15周年記念 × JAT「AI Agent開発者必見:"今"のOracle技術で拡張するAzure × OCIの共存アーキテクチャ」
shisyu_gaku
1
140
PLaMo2シリーズのvLLM実装 / PFN LLM セミナー
pfn
PRO
2
1.1k
20201008_ファインディ_品質意識を育てる役目は人かAIか___2_.pdf
findy_eventslides
2
590
Featured
See All Featured
Keith and Marios Guide to Fast Websites
keithpitt
411
23k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
189
55k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
Designing for humans not robots
tammielis
254
26k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
45
2.5k
A designer walks into a library…
pauljervisheath
209
24k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.5k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
9
590
Docker and Python
trallard
46
3.6k
Six Lessons from altMBA
skipperchong
28
4k
Transcript
在 Google Cloud Platform 架設 你的網站伺服器並撰寫 Node.js 應用程式 PIXNET Travel
會議室 | 2017.09.01 afu @ 研發中心前端組 @afutseng
Agenda 免費註冊 GCP 建立專案與新增虛擬機器 (VM) 安裝 Apache & 你的慣用軟體 示範安裝
Node.js 8 & PHP 7 撰寫 Node.js Hello World 程式 將 Apache 作為代理伺服器轉送請求給 Node.js 應用程式
申請免費試用
None
建立專案
新增 SSH 金鑰 • 點開左上漢堡 Bar • Compute Engine ->
中繼資料 • cat ~/.ssh/id_rsa.pub P.S. 如無該檔案請用 ssh-keygen 指令產生新的金鑰
新增虛擬機器 • Compute Engine / VM 執行個體 • 機器類型:微型 (micro)
/ 1 vCPU / 0.6 GB RAM *免費* (仍顯示每月 $4.28 USD 預估費用) • 勾選允許 HTTP & HTTPS 流量
使用終端機透過 ssh 連上剛開好的 VM $ ssh
[email protected]
更新軟體 $ sudo apt-get update # 抓取新的軟體版本
安裝網站伺服器 - Apache 2.4 $ sudo apt-get install apache2 安裝完成後可用
apache2 -v 指令查詢版本資訊
啟動網站伺服器 $ sudo service apache2 restart # 重開 server •
start - 啟動 apache web server • stop - 停止 apache web server
瀏覽器連上你的機器 IP 應可看到 Apache 預設首頁
練習安裝你的慣用軟體 • git / tmux / screen / mosh •
偏好的 Shell (例如 zsh) & VIM 設定 • 偏好的程式語言 (PHP, Node.js, Python, Ruby, etc.)
示範安裝 Node.js v8.4.0 curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash
- sudo apt-get install -y nodejs 安裝完成後可用 node -v 指令查詢版本資訊 其他作業系統平台可參考 :https://nodejs.org/en/download/package-manager/
示範安裝 PHP 7.0 sudo apt-get install -y php7.0 安裝完成後可用 php
-v 指令查詢版本資訊
安裝 Apache PHP 7 的模組 (Optional) 注意,必須先安裝 Apache sudo apt-get
install -y libapache2-mod-php7.0
撰寫 Node.js Hello World 伺服器程式 const http = require("http"); const
server = http.createServer((request, response) => { response.writeHead(200, { "Content-Type" : "text/plain"}); response.write( "hello world~" ); response.end(); }); server.listen(3000); console.log("Server is listening" );
以 Apache 作為代理伺服器轉送請求 應用情境:80 port 有跑 PHP 或其他語言,將 Apache 作為
Proxy 角色依需求 轉送請求到跑在其他 port 的 web server sudo a2enmod proxy sudo a2enmod proxy_http 範例:編輯預設 Apache config sudo vim /etc/apache2/sites-enabled/000-default.conf
把 /nodejs 路由請求轉送給 3000 port 處理 <VirtualHost *:80> # 原有設定,
略 ProxyPass /nodejs http://localhost:3000/ </VirtualHost > *記得重開 Apache
None
其他方案:使用 PM2 管理 node processes sudo npm install pm2 -g
pm2 start server.js pm2 list|restart|stop|delete http://pm2.keymetrics.io/
Thanks
None
None