Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Amazon S3でWordPressを動かす

Amazon S3でWordPressを動かす

【WordPress特別セミナー】StaticPress × S3 × Vagrant 勉強会
の講演資料
http://atnd.org/events/43607

Twitterまとめ
http://togetter.com/li/576298

■共演の方々の資料
WordPress サイトの 長期的メンテナンス
http://www.slideshare.net/naokomc/wordpress-27138322

現場視点で語るstaticpress開発の背景と事例
http://www.slideshare.net/megumithemes/staticpress-27139158

StaticPress
http://www.slideshare.net/wokamoto1973/staticpress

Amazon S3による静的Webサイトホスティング
http://www.slideshare.net/horiyasu/amazon-s3web-27138902

仮想マシンざっくり解説と実践Vagrant
http://www.slideshare.net/YukihikoSawanobori/staticpress-seminor-vagrantpublic

Yuichiro MASUI

October 13, 2013
Tweet

More Decks by Yuichiro MASUI

Other Decks in Technology

Transcript

  1. @masuidrive • Yuichiro MASUI - Ichi • Open source developer,

    Ruby fun • Pukiwiki, Ruby on Rails tutorial movie in Japanese, IKEA hacker • Furo-grammer (Coding in hot tub) • FrogApps / Toreta. CTO // ex-Appcelerati Sunday, October 13, 13
  2. Hi! I’m @masuidrive. • Yuichiro MASUI - Ichi • Open

    source developer, Ruby fun • Pukiwiki, Ruby on Rails tutorial movie in Japanese, IKEA hacker • Furo-grammer (Coding in hot tub) • FrogApps, Inc. CTO // ex-Appcelerati Sunday, October 13, 13
  3. Hi! I’m @masuidrive. • Yuichiro MASUI - Ichi • Open

    source developer, Ruby fun • Pukiwiki, Ruby on Rails tutorial movie in Japanese, IKEA hacker • Furo-grammer (Coding in hot tub) • FrogApps, Inc. CTO // ex-Appcelerati ϛΠϧ Sunday, October 13, 13
  4. Hi! I’m @masuidrive. • Yuichiro MASUI - Ichi • Open

    source developer, Ruby fun • Pukiwiki, Ruby on Rails tutorial movie in Japanese, IKEA hacker • Furo-grammer (Coding in hot tub) • FrogApps, Inc. CTO // ex-Appcelerati Sunday, October 13, 13
  5. Vagrantfile Vagrant.configure("2") do |config| config.vm.box = "precise32" config.vm.box_url = "http://files.vagrantup.com/precise32.box"

    config.vm.network \ :forwarded_port, guest: 8080, host: 8080 config.vm.synced_folder "www", "/var/www/" end Sunday, October 13, 13