1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00
freebsd-ports/www/gitlab-ce/files/patch-bin_web__puma
Matthias Fechner 711b0fc2f2 Switch gitlab internal webserver to puma.
Gitlab switched with version 13.0 to puma as default.

PR:		247564
2020-08-11 14:15:00 +00:00

12 lines
327 B
Plaintext

--- bin/web_puma.orig 2020-08-11 09:44:03 UTC
+++ bin/web_puma
@@ -10,7 +10,7 @@ puma_config="$app_root/config/puma.rb"
spawn_puma()
{
- exec bundle exec puma --config "${puma_config}" --environment "$RAILS_ENV" "$@"
+ exec bundle exec gpuma --config "${puma_config}" --environment "$RAILS_ENV" "$@"
}
get_puma_pid()