ipythonを リモートサーバでホスティングする方法のメモ。
下記を実行し、ハッシュをメモ。

import IPython.lib
IPython.lib.passwd()

DOS画面で「ipython profile create XXX」を実行する。(XXXは適宜) %HOMEPATH%\.ipython\profile_XXX\ipython_notebook_config.py の「c = get_config()」を下記で修正。

c = get_config()
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.password = 最初のハッシュ
c.NotebookApp.port = 9999

「ipython notebook --profile=XXX」を実行し、「http://localhost:9999」にアクセス