This commit is contained in:
Shannon Burns 2015-06-02 16:25:09 +00:00
commit 95758d0256
2 changed files with 14 additions and 14 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
CMD=./nginx-ldap-auth-daemon.py CMD=`pwd`/nginx-ldap-auth-daemon.py
PIDFILE=./nginx-ldap-auth-daemon.pid PIDFILE=`pwd`/nginx-ldap-auth-daemon.pid
case $1 in case $1 in
"start") "start")

View File

@ -16,7 +16,7 @@ http {
# NGINX/NGINX Plus listen on port 8081 for requests that require # NGINX/NGINX Plus listen on port 8081 for requests that require
# authentication. Change the port number as appropriate. # authentication. Change the port number as appropriate.
server { server {
listen 127.0.0.1:8081; listen 8081;
# Protected application # Protected application
location / { location / {