plan9fox/werc/bin/contrib/rc-httpd/handlers/authorize

7 lines
134 B
Plaintext
Raw Normal View History

2022-06-30 15:40:21 +00:00
#!/bin/rc
if(~ $REMOTE_USER ''){
extra_headers=($extra_headers 'WWW-Authenticate: Basic realm="'$"SERVER_NAME'"')
error 401
exit
}