Difference between revisions of "Web/Deploy"

From HaskellWiki
< Web
Jump to navigation Jump to search
(content imported from Web)
 
(2 intermediate revisions by 2 users not shown)
Line 8: Line 8:
   
 
== Yesod ==
 
== Yesod ==
=== Warp Web sever ===
 
includes its own server (Warp, which is one possible WAI backend) see [[Web/Frameworks]]
 
   
  +
Yesod targets WAI backends. See WAI + FastCGI below for another option. The premier WAI backend is the Warp web server. see [[Web/Frameworks]]
   
=== (Fast)CGI + WAI ===
+
== (Fast)CGI + WAI ==
   
 
Use a webserver like [http://nginx.org/ nginx], [http://www.lighttpd.net/ lighttpd], or [http://www.apache.org/ Apache]. These servers would communicate with your web applications using CGI or FastCGI. See [http://hackage.haskell.org/package/wai-handler-fastcgi wai-handler-fastcgi] for a library which connects FastCGI with the WAI interface. A [http://www.google.co.uk/search?hl=en&as_sitesearch=hackage.haskell.org%2Fpackage&as_q=wai-handler search] for wai-handler shows the various options available. See the [http://docs.yesodweb.com/book/deploying/ deployment] chapter of the Yesod book to see how to configure the various servers and FastCGI to host WAI applications.
 
Use a webserver like [http://nginx.org/ nginx], [http://www.lighttpd.net/ lighttpd], or [http://www.apache.org/ Apache]. These servers would communicate with your web applications using CGI or FastCGI. See [http://hackage.haskell.org/package/wai-handler-fastcgi wai-handler-fastcgi] for a library which connects FastCGI with the WAI interface. A [http://www.google.co.uk/search?hl=en&as_sitesearch=hackage.haskell.org%2Fpackage&as_q=wai-handler search] for wai-handler shows the various options available. See the [http://docs.yesodweb.com/book/deploying/ deployment] chapter of the Yesod book to see how to configure the various servers and FastCGI to host WAI applications.
Line 22: Line 21:
   
 
Use CGI or FastCGI to talk to another web server. See this [[Web/Literature/Practical_web_programming_in_Haskell|tutorial on simple CGI programming]] for a simple example.
 
Use CGI or FastCGI to talk to another web server. See this [[Web/Literature/Practical_web_programming_in_Haskell|tutorial on simple CGI programming]] for a simple example.
  +
  +
== MFlow ==
  +
  +
MFlow targets WAI backends (as well as HACK backends, which are discontinued). See WAI + FastCGI above for another option. The premier WAI backend is the Warp web server. see [[Web/Frameworks]]
   
 
== Other ==
 
== Other ==

Revision as of 16:40, 15 May 2013

Haskell Web Development

Software:
Servers - Libraries - Frameworks
Deploy - Cloud
Interfaces to frameworks
Databases and Persistence
Testing and Verification
Content Management

Community & Research:
Forums and Discussion
Literature (research, talks and blogs)
Existing Haskell web applications
Ongoing projects and ideas

Deployment/Backend options for your haskell web code.

Happstack

includes its own server. see Web/Frameworks

Yesod

Yesod targets WAI backends. See WAI + FastCGI below for another option. The premier WAI backend is the Warp web server. see Web/Frameworks

(Fast)CGI + WAI

Use a webserver like nginx, lighttpd, or Apache. These servers would communicate with your web applications using CGI or FastCGI. See wai-handler-fastcgi for a library which connects FastCGI with the WAI interface. A search for wai-handler shows the various options available. See the deployment chapter of the Yesod book to see how to configure the various servers and FastCGI to host WAI applications.

Snap

includes its own server. see Web/Frameworks

(Fast)CGI

Use CGI or FastCGI to talk to another web server. See this tutorial on simple CGI programming for a simple example.

MFlow

MFlow targets WAI backends (as well as HACK backends, which are discontinued). See WAI + FastCGI above for another option. The premier WAI backend is the Warp web server. see Web/Frameworks

Other

Check out the documentation for others frameworks listed at Web/Framework