better cnp support

svn: r13564
This commit is contained in:
Jay McCarthy 2009-02-13 23:22:01 +00:00
parent dc78217029
commit e026f89d37
2 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ Second, if you want to make your own Scheme start-up script, you can write:
@(require (for-label mzlib/os))
@schemeblock[
(require mzlib/os)
(with-output-to-file _pid-file (lambda () (write (getpid))))
(with-output-to-file _your-pid-file (lambda () (write (getpid))))
(_start-server)
]

View File

@ -1153,7 +1153,7 @@ Second, add the following at the bottom of your application:
#:listen-ip #f
#:port 8000
#:extra-files-paths
(list (build-path _path "htdocs"))
(list (build-path _your-path-here "htdocs"))
#:servlet-path
"/servlets/APPLICATION.ss")
]
@ -1162,7 +1162,7 @@ You can change the value of the @scheme[#:port] parameter to use a different por
@scheme[#:listen-ip] is set to @scheme[#f] so that the server will listen on @emph{all} available IPs.
You should change @scheme[_path] to be the path to the parent of your @scheme[htdocs] directory.
You should change @scheme[_your-path-here] to be the path to the parent of your @scheme[htdocs] directory.
You should change @scheme["APPLICATION.ss"] to be the name of your application.