summaryrefslogtreecommitdiff
path: root/auth-server-poc/config/nginx_app.conf
diff options
context:
space:
mode:
authorVictor Näslund <victor@sunet.se>2022-11-13 04:12:47 +0100
committerVictor Näslund <victor@sunet.se>2022-11-13 04:12:47 +0100
commitf7a40b9e13d242968db83acaac13660224eb0143 (patch)
treed8f0cdf5d93cc1aebc83343aea6615bc2ee9bc55 /auth-server-poc/config/nginx_app.conf
parent8baecf339e8061160bee519e87ffe837d1525c18 (diff)
new direction
Diffstat (limited to 'auth-server-poc/config/nginx_app.conf')
-rw-r--r--auth-server-poc/config/nginx_app.conf17
1 files changed, 0 insertions, 17 deletions
diff --git a/auth-server-poc/config/nginx_app.conf b/auth-server-poc/config/nginx_app.conf
deleted file mode 100644
index 7b1e6f9..0000000
--- a/auth-server-poc/config/nginx_app.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-server {
- listen 80;
- server_name auth-server-poc;
- client_max_body_size 200M;
-
- location / {
- limit_except OPTIONS {
- auth_basic "auth-server-poc static auth";
- auth_basic_user_file "/opt/auth-server-poc/userdb/.htpasswd";
- }
- uwsgi_pass unix:///tmp/uwsgi.sock;
- default_type application/json;
- include uwsgi_params;
- uwsgi_param REMOTE_USER $remote_user;
- uwsgi_param AUTH_TYPE Basic;
- }
-}