Artifact af6f8d8830aa569422dec2ae64f02def59c5a672:
- File www/server.wiki — part of check-in [f546625903] at 2010-02-17 20:17:31 on branch trunk — add server.wiki document (user: ron size: 1138)
Server Setup Guide
Server Setup Guide
This guide is intended to help guide you in setting up a Fossil server.
Standalone server
The easiest way to set up a Fossil server is to use the server or ui command. Assuming the repository you are interested in serving is in the file "repo.fossil", you can use either of these commands to start Fossil as a server:Both of these commands start a Fossil server on port 8080 on the local machine, which can be accessed with the URL: http://localhost:8080/ 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.
- fossil server repo.fossil
- fossil ui repo.fossil