Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken headings in Markdown files #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -86,25 +86,25 @@ ktpass
-out FILE.keytab
~~~

####2-Check your /etc/krb5.conf
#### 2-Check your /etc/krb5.conf

~~~
kinit [email protected]
~~~

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/[email protected]
~~~

####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

~~~
<VirtualHost *:8001>
Expand Down Expand Up @@ -149,7 +149,7 @@ The modules you need are `mod-auth-kerb`, `proxy`, `proxy_http`, `headers`, `rew
</VirtualHost>
~~~

####6-Configure Passport.js
#### 6-Configure Passport.js

~~~javascript
var passport = require('passport');
Expand Down