6 lines
134 B
Bash
Executable file
6 lines
134 B
Bash
Executable file
#!/bin/rc
|
|
if(~ $REMOTE_USER ''){
|
|
extra_headers=($extra_headers 'WWW-Authenticate: Basic realm="'$"SERVER_NAME'"')
|
|
error 401
|
|
exit
|
|
}
|