LoginSignup
3
3

More than 5 years have passed since last update.

ansibleでnginx入れてみる

Posted at

個人的メモなので、あまり期待はしないでください。

  • まず手始めにSElinuxをヤる
    • 毎度のことながらselinuxが邪魔をするので息の根を止める
  • 以下適当なところにファイル作ってください。
# selinux_kill.yml
---
  - name: Install libselinux-python
    sudo: true
    yum: name=libselinux-python state=installed

  - name: disable SELinux
    sudo: true
    selinux: state=disabled
  • ansibleのファイル構成
ansible/
  inventory/
    local
  roles/
    nginx/
      tasks/
        main.yml
        selinux_kill.yml
      template/
        default.conf.j2
  local.yml

上記の感じでselinuxをヤれば、多分他のサイト参考にnginxが入るはず。

ansibleを使用しての感想

  • 見やすい
  • 理解すれば管理も楽?
  • chefと比べると・・・どうだろ?
参考
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3