Update README.md

This commit is contained in:
Kload 2013-10-20 18:34:16 +02:00
parent 2f63e6899d
commit cec0ca6959

View file

@ -33,7 +33,7 @@ nano /etc/ssowat/conf.json
Nginx conf
----------
* Add SSOwat's Nginx configuration
* Add SSOwat's Nginx configuration (http{} scope)
```bash
nano /etc/nginx/conf.d/ssowat.conf
@ -44,16 +44,6 @@ nano /etc/nginx/conf.d/ssowat.conf
init_by_lua_file /etc/ssowat/init.lua;
access_by_lua_file /etc/ssowat/access.lua;
server {
listen 80; # Do not forget HTTPS for production
location /ssowat {
alias /etc/ssowat/portal;
default_type text/html;
index index.html;
}
}
```
**That's it !**