summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/gitea.pp
blob: 4a2a6be85235b1f97f9651c3a488ed54bc4deb58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class tozt::gitea {
  include gitea
  include tozt::certbot
  include tozt::persistent

  nginx::site {
    "git-tls":
      source => 'puppet:///modules/tozt/nginx/gitea-tls.conf',
      require => Class['certbot'];
    "git":
      source => 'puppet:///modules/tozt/nginx/git.conf';
  }
}