Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • ula/nginx-authenticator
1 result
Show changes
Commits on Source (2)
#!/usr/bin/make -f
export DH_GOLANG_EXCLUDES := vendor
export DH_GOLANG_INSTALL_ALL := 1
%:
dh $@ --buildsystem=golang --with=golang
......
usr/bin/nginx-authenticator
debian/ula_auth.conf etc/nginx/conf.d
debian/ula_auth.snippet etc/nginx/snippets
upstream ula_auth {
server unix:/run/nginx-authenticator/socket;
}
location = /__auth {
proxy_pass http://nginx_auth;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
}