-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debian package chmod 777 #2659
Comments
@thefosk ^ |
@p0pr0ck5 the fix for this is creating a user with the appropriate permissions to the default prefix Since we don't know in advance what user will be running Kong, and what permissions such user has on |
We have those since #2180 With Nginx packaging this will effectively be a user responsibility via |
Debian packages no longer chmod 777, starting w/ 0.11.0 release :) |
Do I really need chmod 777 for all files in this directory /usr/local/kong ? After upgrade every file there is writeable .conf .sh etc.
It's done by debian package postinstall.
#!/bin/sh
mkdir -p /etc/kong
mv /usr/local/lib/luarocks/rocks/kong/0.10.1-0/kong.conf.default /etc/kong/kong.conf.default
chmod -R 777 /usr/local/kong/
The text was updated successfully, but these errors were encountered: