Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | add server.wiki document |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f54662590307b7cc9ac5a977cc12018c |
User & Date: | ron 2010-02-17 20:17:31 |
Context
2010-02-17
| ||
20:27 | more detail for server.wiki check-in: c516e0d2 user: ron tags: trunk | |
20:17 | add server.wiki document check-in: f5466259 user: ron tags: trunk | |
16:34 | fix typo in isspace() check-in: ef43b995 user: rwilson tags: trunk | |
Changes
Added www/server.wiki.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<title>Server Setup Guide</title> <nowiki> <h1 align="center">Server Setup Guide</h1> <p>This guide is intended to help guide you in setting up a Fossil server.</p> <h2>Standalone server</h2><blockquote> The easiest way to set up a Fossil server is to use the <tt>server</tt> or <tt>ui</tt> command. Assuming the repository you are interested in serving is in the file "<tt>repo.fossil</tt>", you can use either of these commands to start Fossil as a server: <ul> <li><tt>fossil server repo.fossil</tt> <li><tt>fossil ui repo.fossil</tt> </ul> Both of these commands start a Fossil server on port 8080 on the local machine, which can be accessed with the URL: <tt>http://localhost:8080/</tt> using any handy web browser. The difference between the two commands is that "ui", in addition to starting the Fossil server, also starts a web browser and points it to the URL mentioned above. NOTE: the "--port NNN" option will start the server using port "NNN" instead of 8080. Also, if port 8080 is already being used (perhaps by another Fossil server), then Fossil will use the next available port number. </blockquote> </nowiki> |