Merge branch '1015303-fix-actioncable' into 'master'
Install configuration file for ActionCable See merge request ruby-team/gitlab!10
This commit is contained in:
commit
ab4c4f2568
5 changed files with 19 additions and 2 deletions
2
debian/README.Debian
vendored
2
debian/README.Debian
vendored
|
@ -6,7 +6,7 @@ and listens on tcp port 6379. So gitlab package in debian is configured to use
|
|||
tcp sockets. gitlab developers recommend using unix sockets. You can change to
|
||||
using unix sockets by changing the following configuration files.
|
||||
|
||||
/etc/redis/redis.conf and /etc/gitlab/resque.yml
|
||||
/etc/redis/redis.conf, /etc/gitlab/resque.yml, and /etc/gitlab/cable.yml
|
||||
|
||||
2. wiki backend: debian package uses gollum-rugged_adapter whereas gitlab
|
||||
upstream still use gollum-grit_adapter. grit is no longer maintained and grit
|
||||
|
|
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -1,3 +1,10 @@
|
|||
gitlab (15.0.4+ds1-2) UNRELEASED; urgency=medium
|
||||
|
||||
[ Balasankar C]
|
||||
* Install ActionCable configuration file (Closes: #1015303)
|
||||
|
||||
-- Balasankar C <balasankarc@debian.org> Sun, 24 Jul 2022 19:12:07 +0530
|
||||
|
||||
gitlab (15.0.4+ds1-1) experimental; urgency=medium
|
||||
|
||||
[ Antoine Le Gonidec ]
|
||||
|
|
9
debian/conf/cable.yml
vendored
Normal file
9
debian/conf/cable.yml
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
production:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379
|
||||
development:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379
|
||||
test:
|
||||
adapter: redis
|
||||
url: redis://localhost:6379
|
2
debian/control
vendored
2
debian/control
vendored
|
@ -4,7 +4,7 @@ Priority: optional
|
|||
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
|
||||
Uploaders: Cédric Boutillier <boutil@debian.org>,
|
||||
Pirate Praveen <praveen@debian.org>,
|
||||
Balasankar C <balasankarc@autistici.org>,
|
||||
Balasankar C <balasankarc@debian.org>,
|
||||
Sruthi Chandran <srud@debian.org>,
|
||||
Utkarsh Gupta <utkarsh@debian.org>
|
||||
Build-Depends: debhelper-compat (= 13),
|
||||
|
|
1
debian/gitlab.install
vendored
1
debian/gitlab.install
vendored
|
@ -3,6 +3,7 @@ debian/conf/puma.rb etc/gitlab
|
|||
debian/conf/database.yml etc/gitlab
|
||||
debian/conf/gitlab.yml.example usr/lib/gitlab/templates
|
||||
debian/conf/resque.yml etc/gitlab
|
||||
debian/conf/cable.yml etc/gitlab
|
||||
debian/conf/gitlab-debian.conf.example usr/lib/gitlab/templates
|
||||
debian/conf/*.target lib/systemd/system
|
||||
debian/conf/smtp_settings.rb etc/gitlab/initializers
|
||||
|
|
Loading…
Reference in a new issue