diff options
author | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-12-30 06:51:33 -0800 |
---|---|---|
committer | Sergey Stankevich <stankevich@users.noreply.github.com> | 2013-12-30 06:51:33 -0800 |
commit | 377c1a1ce37ca84502a9730ae4c0978d68ce6dd9 (patch) | |
tree | a99d82df39400be80ad436be2312ad92f1557066 /manifests | |
parent | de7c5b770adba8e6846a57f8f538617593234d8d (diff) | |
parent | ed1fed8d5cef752603ee469d2a093bd9218488ea (diff) |
Merge pull request #47 from freyes/set-username
Expose user/group config to configure gunicorn
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/gunicorn.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/gunicorn.pp b/manifests/gunicorn.pp index 13f4872..159afa3 100644 --- a/manifests/gunicorn.pp +++ b/manifests/gunicorn.pp @@ -37,6 +37,8 @@ # dir => '/var/www/project1/current', # bind => 'unix:/tmp/gunicorn.socket', # environment => 'prod', +# owner => 'www-data', +# group => 'www-data', # template => 'python/gunicorn.erb', # } # @@ -53,6 +55,8 @@ define python::gunicorn ( $dir = false, $bind = false, $environment = false, + $owner = 'www-data', + $group = 'www-data', $template = 'python/gunicorn.erb', ) { |