Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NGINX Authenticator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ula
NGINX Authenticator
Compare revisions
dca6ef32042692a495de0ba6140d193a9bf07a21 to 554c566dc9334c40b08feaed22859d9355dd93b2
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ula/nginx-authenticator
Select target project
No results found
554c566dc9334c40b08feaed22859d9355dd93b2
Select Git revision
Branches
main
Swap
Target
ula/nginx-authenticator
Select target project
ula/nginx-authenticator
1 result
dca6ef32042692a495de0ba6140d193a9bf07a21
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Drop useless env
· 4c3be96d
ale
authored
3 months ago
4c3be96d
Add NGINX config snippets
· 554c566d
ale
authored
3 months ago
554c566d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
debian/rules
+0
-1
0 additions, 1 deletion
debian/rules
debian/ula-nginx-authenticator.install
+3
-1
3 additions, 1 deletion
debian/ula-nginx-authenticator.install
debian/ula_auth.conf
+3
-0
3 additions, 0 deletions
debian/ula_auth.conf
debian/ula_auth.snippet
+6
-0
6 additions, 0 deletions
debian/ula_auth.snippet
with
12 additions
and
2 deletions
debian/rules
View file @
554c566d
#!/usr/bin/make -f
export DH_GOLANG_EXCLUDES := vendor
export DH_GOLANG_INSTALL_ALL := 1
%:
dh $@ --buildsystem=golang --with=golang
...
...
This diff is collapsed.
Click to expand it.
debian/ula-nginx-authenticator.install
View file @
554c566d
usr
/
bin
/
nginx
-
authenticator
debian
/
ula_auth
.
conf
etc
/
nginx
/
conf
.
d
debian
/
ula_auth
.
snippet
etc
/
nginx
/
snippets
This diff is collapsed.
Click to expand it.
debian/ula_auth.conf
0 → 100644
View file @
554c566d
upstream
ula_auth
{
server
unix
:/
run
/
nginx
-
authenticator
/
socket
;
}
This diff is collapsed.
Click to expand it.
debian/ula_auth.snippet
0 → 100644
View file @
554c566d
location = /__auth {
proxy_pass http://nginx_auth;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
}
This diff is collapsed.
Click to expand it.