-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Labels
Description
Hi,
I want to install GitLab with Apache, however the following resource breaks the installation if nginx is not present in the system.
# gitlab
file { '/etc/nginx/conf.d/gitlab.conf':
ensure => file,
content => template('gitlab/nginx-gitlab.conf.erb'),
owner => root,
group => root,
mode => '0644',
}
Removing it resolves the issue so if you want to allow the option of using Apache instead of nginx, you might want to consider making this optional.
Cheers
Reactions are currently unavailable