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