0

我试图在由 Ansible 管理的多站点 Worpress 环境中使用 certbot 设置 SSL。我查看了 nginx 文件夹,似乎有一个由 Puppet 管理的自定义 nginx 配置文件。我添加 SSL 设置所需的服务器配置更改的正确方法是什么。

4

1 回答 1

0

有很多选择。我将列出我使用的两个

file { '/etc/nginx/sites-available/default':
    content => template('module_name/nginx.conf.erb'),
    owner   => $user,
    group   => $groupname
  } 

或者

file_line{ 'Add line to file':
  path => '/path/to/file/',  
  line => "line to add",
  match   =>'regex for the line you want to replace' 
  }
于 2016-09-27T09:12:44.827 回答