From d6e6c2510e9c820bf2b522e997015a209d4b1fd3 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Mon, 17 Apr 2017 00:47:01 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cdacd2e..8758eb2 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ app.get('/express-passport', You can take advantage of [mod_auth_kerb](http://modauthkerb.sourceforge.net/) in linux by using apache as a reverse proxy to your node application. The configuration is not a _walk in the park_ but after you have everything configured it just works. -####1-Generate a keytab in windows +#### 1-Generate a keytab in windows ~~~ ktpass @@ -86,7 +86,7 @@ ktpass -out FILE.keytab ~~~ -####2-Check your /etc/krb5.conf +#### 2-Check your /etc/krb5.conf ~~~ kinit user@CONTOSO.COM @@ -94,17 +94,17 @@ kinit user@CONTOSO.COM You should be able to login from the linux machine. -####3-Check your keytab is okay +#### 3-Check your keytab is okay ~~~ kinit -V -kt FILE.keytab service/server.CONTOSO.COM@CONTOSO.COM ~~~ -####4-Install apache with the modules +#### 4-Install apache with the modules The modules you need are `mod-auth-kerb`, `proxy`, `proxy_http`, `headers`, `rewrite`. -####5-Configure your apache +#### 5-Configure your apache ~~~ @@ -149,7 +149,7 @@ The modules you need are `mod-auth-kerb`, `proxy`, `proxy_http`, `headers`, `rew ~~~ -####6-Configure Passport.js +#### 6-Configure Passport.js ~~~javascript var passport = require('passport');