index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>User's Guide</title>
  5. <!-- Copyright Embedthis Software. All Rights Reserved. -->
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <meta charset="utf-8" />
  8. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  10. <meta name="description" content="Simple, fast, secure embedded web server" />
  11. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700'
  12. rel='stylesheet' type='text/css'>
  13. <link href='https://fonts.googleapis.com/css?family=Julius+Sans+One' rel='stylesheet' type='text/css'>
  14. <link href="/goahead/doc/users/" rel="canonical" />
  15. <link href="../images/favicon.ico" rel="shortcut icon" />
  16. <link href="../lib/semantic-ui/semantic.min.css" rel="stylesheet" type="text/css" />
  17. <link href="../css/all.min.css" rel="stylesheet" type="text/css" />
  18. <link href="../css/api.min.css" rel="stylesheet" type="text/css" />
  19. </head>
  20. <body class="show-sidebar">
  21. <div class="sidebar">
  22. <div class="ui large left vertical inverted labeled menu">
  23. <div class="item">
  24. <a href="../" class="logo">GoAhead Docs</a>
  25. </div>
  26. <div class="item">
  27. <a href="../">
  28. <b>General</b>
  29. </a>
  30. <div class="menu">
  31. <a class="item" href="../">GoAhead Overview</a>
  32. <a class="item" href="../users/features.html">GoAhead Features</a>
  33. <a class="item" href="https://embedthis.com/goahead/download.html">Download</a>
  34. <a class="item" href="../licensing/">Licensing</a>
  35. </div>
  36. </div>
  37. <div class="item">
  38. <a href="../start/">
  39. <b>Getting Started</b>
  40. </a>
  41. <div class="menu">
  42. <a class="item" href="../start/quick.html">Quick Start</a>
  43. <a class="item" href="../start/installing.html">Installing GoAhead</a>
  44. <a class="item" href="../start/running.html">Running GoAhead</a>
  45. <a class="item" href="../start/releaseNotes.html">Release Notes</a>
  46. <a class="item" href="../start/faq.html">GoAhead FAQ</a>
  47. <a class="item" href="../start/source.html">Building from Source</a>
  48. </div>
  49. </div>
  50. <div class="item">
  51. <a href="../users/"><b>User's Guide</b></a>
  52. <div class="menu">
  53. <a class="item" href="../users/ports.html">Ports and Binding</a>
  54. <a class="item" href="../users/routing.html">Routing Requests</a>
  55. <a class="item" href="../users/handlers.html">Request Handlers</a>
  56. <a class="item" href="../users/js.html">Embedded Javascript</a>
  57. <a class="item" href="../users/jst.html">Javascript Templates</a>
  58. <a class="item" href="../users/goactions.html">GoActions</a>
  59. <a class="item" href="../users/cgi.html">CGI Programs</a>
  60. <a class="item" href="../users/authentication.html">User Authentication</a>
  61. <a class="item" href="../users/logFiles.html">Log Files</a>
  62. <a class="item" href="../users/ssl.html">Secure Sockets (SSL)</a>
  63. <a class="item" href="../users/security.html">Security Considerations</a>
  64. <a class="item" href="../users/man.html">Man Pages</a>
  65. </div>
  66. </div>
  67. <div class="item">
  68. <a href="../developers/">Developer's Guide</a>
  69. <div class="menu">
  70. <a class="item" href="../developers/embedding.html">Embedding GoAhead</a>
  71. <a class="item" href="../developers/handlers.html">Creating GoAhead Handlers</a>
  72. <a class="item" href="../developers/authstore.html">Creating Password Verifiers</a>
  73. <a class="item" href="../developers/migrating.html">Migrating to GoAhead 3</a>
  74. <a class="item" href="../developers/rom.html">Serving Pages from ROM</a>
  75. </div>
  76. </div>
  77. <div class="item">
  78. <a href="../ref/">Reference Guide</a>
  79. <div class="menu">
  80. <a class="item" href="../ref/compatibility.html">Compatibility</a>
  81. <a class="item" href="../ref/native.html">API Library</a>
  82. <a class="item" href="../ref/architecture.html">GoAhead Architecture</a>
  83. <a class="item" href="../standards/http.html">HTTP References</a>
  84. </div>
  85. </div>
  86. <div class="item">
  87. <a href="../developers/project.html">Project Resources</a>
  88. <div class="menu">
  89. <a class="item" href="http://goo.gl/IGbiio">Official GoAhead News</a>
  90. <a class="item" href="https://embedthis.com/goahead/">GoAhead Web Site</a>
  91. <a class="item" href="https://github.com/embedthis/goahead">Source Code Repository</a>
  92. <a class="item" href="https://github.com/embedthis/goahead/issues/99">GoAhead Security Alerts</a>
  93. <a class="item" href="https://github.com/embedthis/goahead/issues">Project Issue Database</a>
  94. <a class="item" href="https://github.com/embedthis/goahead/releases">Change Log</a>
  95. <a class="item" href="https://github.com/embedthis/goahead/milestones">Roadmap</a>
  96. <a class="item" href="https://embedthis.com/developers/contributors.html">Contributors Agreement</a>
  97. </div>
  98. </div>
  99. <div class="item">
  100. <b>Links</b>
  101. <div class="menu">
  102. <a class="item" href="https://embedthis.com/">Embedthis Web Site</a>
  103. <a class="item" href="https://embedthis.com/blog/">Embedthis Blog</a>
  104. <a class="item" href="http://twitter.com/embedthat">Twitter</a>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. <div class="ui inverted masthead">
  110. <div class="ui fixed inverted menu">
  111. <div class="ui sidebar-launch button">
  112. <i class="icon list layout"></i>
  113. </div>
  114. <div class="right menu">
  115. <a class="item" href="https://embedthis.com/">Embedthis</a>
  116. <a class="item" href="https://embedthis.com/goahead/">GoAhead Site</a>
  117. <span class="desktop-only">
  118. <a class="item" href="http://goo.gl/9bL9rM">GoAhead News</a>
  119. <a class="item" href="https://github.com/embedthis/goahead">Repository</a>
  120. <a class="item" href="https://embedthis.com/blog/">Blog</a>
  121. <a class="item" href="https://twitter.com/embedthat">Twitter</a>
  122. </span>
  123. </div>
  124. </div>
  125. <div class="ui breadcrumb">
  126. <a class="section" href="../">Home</a>
  127. </div>
  128. <iframe class="version desktop-only" src="../version.html"></iframe>
  129. </div>
  130. <div class="content">
  131. <h1>User's Guide</h1>
  132. <p>The GoAhead Users Guide explains the following topics:</p>
  133. <table title="topics" class="ui table segment">
  134. <thead>
  135. <tr>
  136. <th class="nowrap">Topic</th>
  137. <th>Description</th>
  138. </tr>
  139. </thead>
  140. <tbody>
  141. <tr>
  142. <td><a href="ports.html">Ports and Binding</a></td>
  143. <td>Listening on IP addresses.</td>
  144. </tr>
  145. <tr>
  146. <td><a href="routing.html">Request Routing</a></td>
  147. <td>Configuring request routes.</td>
  148. </tr>
  149. <tr>
  150. <td><a href="handlers.html">Request Handlers</a></td>
  151. <td>Using request handlers.</td>
  152. </tr>
  153. <tr>
  154. <td class="nowrap"><a href="jst.html">Javascript Templates</a></td>
  155. <td>Using Javascript Templates for dynamic content</td>
  156. </tr>
  157. <tr>
  158. <td class="nowrap"><a href="goactions.html">GoActions</a></td>
  159. <td>Using GoActions to create dynamic responses</td>
  160. </tr>
  161. <tr>
  162. <td class="nowrap"><a href="cgi.html">CGI Programs</a></td>
  163. <td>Using CGI programs to generate responses</td>
  164. </tr>
  165. <tr>
  166. <td><a href="authentication.html">User Authentication</a></td>
  167. <td>Configuring user authentication and authorization.</td>
  168. </tr>
  169. <tr>
  170. <td><a href="logFiles.html">Log Files</a></td>
  171. <td>Logging accesses and requests.</td>
  172. </tr>
  173. <tr>
  174. <td class="nowrap"><a href="ssl.html">Secure Sockets Layer (SSL)</a></td>
  175. <td>Configuring and securing a site via SSL</td>
  176. </tr>
  177. <tr>
  178. <td><a href="security.html">Security Considerations</a></td>
  179. <td>Maximizing security for your web server.</td>
  180. </tr>
  181. <tr>
  182. <td><a href="man.html">Man Pages</a></td>
  183. <td>Manual pages for GoAhead and other programs.</td>
  184. </tr>
  185. </tbody>
  186. </table>
  187. </div>
  188. <div class="terms ui basic center aligned segment">
  189. <p>&copy; Embedthis Software, 2003-2015. All rights reserved.</p>
  190. </div>
  191. <script src="../lib/jquery/jquery.min.js"></script>
  192. <script src="../lib/semantic-ui/semantic.min.js"></script>
  193. <script src="../scripts/sidebar.min.js"></script>
  194. </body>
  195. </html>