-
Notifications
You must be signed in to change notification settings - Fork 644
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
Kerberos #527
base: main
Are you sure you want to change the base?
Kerberos #527
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aside from changes mentioned below, you need to do the following things before this pull request can be accepted:
- Create a Jira account and open a new Jira tickets for this issue.
- Tag your pull request and commit messages with the ticket name.
See the following links:
https://guacamole.apache.org/open-source/
https://issues.apache.org/jira/browse/GUACAMOLE/
src/guacd-docker/krb5.conf
Outdated
[libdefaults] | ||
default_realm = PROCYON.COM | ||
dns_lookup_kdc = true | ||
dns_lookup_realm = true | ||
|
||
[realms] | ||
PROCYON.COM = { | ||
kdc = cez-private.procyon.com | ||
admin_server = cez-private.procyon.com | ||
master_kdc = cez-private.procyon.com | ||
default_domain = procyon.com | ||
} | ||
|
||
[domain_realm] | ||
.procyon.com = PROCYON.COM | ||
procyon.com = PROCYON.COM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this file should be removed from the commit - this looks like something internal to your configuration. I'm not sure that we should provide a template for this - maybe just document instructions for it.
Dockerfile
Outdated
@@ -186,6 +203,7 @@ ARG UID=1000 | |||
ARG GID=10001 | |||
RUN groupadd --gid $GID guacd | |||
RUN useradd --system --create-home --shell /sbin/nologin --uid $UID --gid $GID guacd | |||
COPY ./src/guacd-docker/krb5.conf /etc/krb5.conf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we should provide this - maybe just document the instructions for it.
latest alpine doesn't work - fixing to 3.18.4
No description provided.