Fossil SCM
Update the selfhosting information to talk about the new www3.fossil-scm.org.
Commit
5698492fbb379b7d9aa8f0099b2d5098978336d27d4ce3efa58c8743425982d3
Parent
c45b8f4534682a2…
1 file changed
+13
-7
+13
-7
| --- www/selfhost.wiki | ||
| +++ www/selfhost.wiki | ||
| @@ -1,8 +1,8 @@ | ||
| 1 | 1 | <title>Fossil Self-Hosting Repositories</title> |
| 2 | 2 | |
| 3 | -Fossil has self-hosted since 2007-07-21. As of this writing (2009-08-24) | |
| 3 | +Fossil has self-hosted since 2007-07-21. As of 2017-07-25 | |
| 4 | 4 | there are three publicly accessible repositories for the Fossil source code: |
| 5 | 5 | |
| 6 | 6 | 1. [http://www.fossil-scm.org/] |
| 7 | 7 | 2. [http://www2.fossil-scm.org/] |
| 8 | 8 | 3. [http://www3.fossil-scm.org/site.cgi] |
| @@ -18,11 +18,11 @@ | ||
| 18 | 18 | Changes (such as new tickets or wiki or check-ins) can be implemented |
| 19 | 19 | on any of the three servers and those changes automatically propagate to the |
| 20 | 20 | other two servers. |
| 21 | 21 | |
| 22 | 22 | Server (1) runs as a CGI script on a |
| 23 | -<a href="http://www.linode.com/">Linode 1024</a> located in Dallas, TX | |
| 23 | +<a href="http://www.linode.com/">Linode 8192</a> located in Dallas, TX | |
| 24 | 24 | - on the same virtual machine that |
| 25 | 25 | hosts <a href="http://www.sqlite.org/">SQLite</a> and over a |
| 26 | 26 | dozen other smaller projects. This demonstrates that Fossil can run on |
| 27 | 27 | a low-power host processor. |
| 28 | 28 | Multiple fossil-based projects can easily be hosted on the same machine, |
| @@ -33,34 +33,40 @@ | ||
| 33 | 33 | <blockquote><pre> |
| 34 | 34 | #!/usr/bin/fossil |
| 35 | 35 | repository: /fossil/fossil.fossil |
| 36 | 36 | </pre></blockquote> |
| 37 | 37 | |
| 38 | -Server (3) runs as a CGI script on a shared hosting account at | |
| 38 | +Server (3) ran for 10 years as a CGI script on a shared hosting account at | |
| 39 | 39 | <a href="http://www.he.net/">Hurricane Electric</a> in Fremont, CA. |
| 40 | -This server demonstrates the ability of | |
| 40 | +This server demonstrated the ability of | |
| 41 | 41 | Fossil to run on an economical shared-host web account with no |
| 42 | 42 | privileges beyond port 80 HTTP access and CGI. It is not necessary |
| 43 | 43 | to have a dedicated computer with administrator privileges to run Fossil. |
| 44 | 44 | As far as we are aware, |
| 45 | 45 | Fossil is the only full-featured configuration management system |
| 46 | 46 | that can run in |
| 47 | -such a restricted environment. The CGI script that runs on the | |
| 48 | -Hurricane Electric server is the same as the CGI script shown above, | |
| 47 | +such a restricted environment. The CGI script that ran on the | |
| 48 | +Hurricane Electric server was the same as the CGI script shown above, | |
| 49 | 49 | except that the pathnames are modified to suit the environment: |
| 50 | 50 | |
| 51 | 51 | <blockquote><pre> |
| 52 | 52 | #!/home/hwaci/bin/fossil |
| 53 | 53 | repository: /home/hwaci/fossil/fossil.fossil |
| 54 | 54 | </pre></blockquote> |
| 55 | + | |
| 56 | +In recent years, virtual private servers have become a more flexible and | |
| 57 | +less expensive hosting option compared to shared hosting accounts. | |
| 58 | +So on 2017-07-25, server (3) was moved | |
| 59 | +onto a $5/month "droplet" VPS from [https://www.digitalocean.com|Digital Ocean] | |
| 60 | +located in San Francisco. | |
| 55 | 61 | |
| 56 | 62 | Server (3) is synchronized with the canonical server (1) by running |
| 57 | 63 | the following command via cron: |
| 58 | 64 | |
| 59 | 65 | <blockquote><pre> |
| 60 | 66 | /home/hwaci/bin/fossil sync -R /home/hwaci/fossil/fossil.fossil |
| 61 | 67 | </pre></blockquote> |
| 62 | 68 | |
| 63 | 69 | Server (2) is a |
| 64 | -<a href="http://www.linode.com/">Linode 512</a> located in Newark, NJ | |
| 70 | +<a href="http://www.linode.com/">Linode 4096</a> located in Newark, NJ | |
| 65 | 71 | and set up just like the canonical server (1) with the addition of a |
| 66 | 72 | cron job for synchronization as in server (3). |
| 67 | 73 |
| --- www/selfhost.wiki | |
| +++ www/selfhost.wiki | |
| @@ -1,8 +1,8 @@ | |
| 1 | <title>Fossil Self-Hosting Repositories</title> |
| 2 | |
| 3 | Fossil has self-hosted since 2007-07-21. As of this writing (2009-08-24) |
| 4 | there are three publicly accessible repositories for the Fossil source code: |
| 5 | |
| 6 | 1. [http://www.fossil-scm.org/] |
| 7 | 2. [http://www2.fossil-scm.org/] |
| 8 | 3. [http://www3.fossil-scm.org/site.cgi] |
| @@ -18,11 +18,11 @@ | |
| 18 | Changes (such as new tickets or wiki or check-ins) can be implemented |
| 19 | on any of the three servers and those changes automatically propagate to the |
| 20 | other two servers. |
| 21 | |
| 22 | Server (1) runs as a CGI script on a |
| 23 | <a href="http://www.linode.com/">Linode 1024</a> located in Dallas, TX |
| 24 | - on the same virtual machine that |
| 25 | hosts <a href="http://www.sqlite.org/">SQLite</a> and over a |
| 26 | dozen other smaller projects. This demonstrates that Fossil can run on |
| 27 | a low-power host processor. |
| 28 | Multiple fossil-based projects can easily be hosted on the same machine, |
| @@ -33,34 +33,40 @@ | |
| 33 | <blockquote><pre> |
| 34 | #!/usr/bin/fossil |
| 35 | repository: /fossil/fossil.fossil |
| 36 | </pre></blockquote> |
| 37 | |
| 38 | Server (3) runs as a CGI script on a shared hosting account at |
| 39 | <a href="http://www.he.net/">Hurricane Electric</a> in Fremont, CA. |
| 40 | This server demonstrates the ability of |
| 41 | Fossil to run on an economical shared-host web account with no |
| 42 | privileges beyond port 80 HTTP access and CGI. It is not necessary |
| 43 | to have a dedicated computer with administrator privileges to run Fossil. |
| 44 | As far as we are aware, |
| 45 | Fossil is the only full-featured configuration management system |
| 46 | that can run in |
| 47 | such a restricted environment. The CGI script that runs on the |
| 48 | Hurricane Electric server is the same as the CGI script shown above, |
| 49 | except that the pathnames are modified to suit the environment: |
| 50 | |
| 51 | <blockquote><pre> |
| 52 | #!/home/hwaci/bin/fossil |
| 53 | repository: /home/hwaci/fossil/fossil.fossil |
| 54 | </pre></blockquote> |
| 55 | |
| 56 | Server (3) is synchronized with the canonical server (1) by running |
| 57 | the following command via cron: |
| 58 | |
| 59 | <blockquote><pre> |
| 60 | /home/hwaci/bin/fossil sync -R /home/hwaci/fossil/fossil.fossil |
| 61 | </pre></blockquote> |
| 62 | |
| 63 | Server (2) is a |
| 64 | <a href="http://www.linode.com/">Linode 512</a> located in Newark, NJ |
| 65 | and set up just like the canonical server (1) with the addition of a |
| 66 | cron job for synchronization as in server (3). |
| 67 |
| --- www/selfhost.wiki | |
| +++ www/selfhost.wiki | |
| @@ -1,8 +1,8 @@ | |
| 1 | <title>Fossil Self-Hosting Repositories</title> |
| 2 | |
| 3 | Fossil has self-hosted since 2007-07-21. As of 2017-07-25 |
| 4 | there are three publicly accessible repositories for the Fossil source code: |
| 5 | |
| 6 | 1. [http://www.fossil-scm.org/] |
| 7 | 2. [http://www2.fossil-scm.org/] |
| 8 | 3. [http://www3.fossil-scm.org/site.cgi] |
| @@ -18,11 +18,11 @@ | |
| 18 | Changes (such as new tickets or wiki or check-ins) can be implemented |
| 19 | on any of the three servers and those changes automatically propagate to the |
| 20 | other two servers. |
| 21 | |
| 22 | Server (1) runs as a CGI script on a |
| 23 | <a href="http://www.linode.com/">Linode 8192</a> located in Dallas, TX |
| 24 | - on the same virtual machine that |
| 25 | hosts <a href="http://www.sqlite.org/">SQLite</a> and over a |
| 26 | dozen other smaller projects. This demonstrates that Fossil can run on |
| 27 | a low-power host processor. |
| 28 | Multiple fossil-based projects can easily be hosted on the same machine, |
| @@ -33,34 +33,40 @@ | |
| 33 | <blockquote><pre> |
| 34 | #!/usr/bin/fossil |
| 35 | repository: /fossil/fossil.fossil |
| 36 | </pre></blockquote> |
| 37 | |
| 38 | Server (3) ran for 10 years as a CGI script on a shared hosting account at |
| 39 | <a href="http://www.he.net/">Hurricane Electric</a> in Fremont, CA. |
| 40 | This server demonstrated the ability of |
| 41 | Fossil to run on an economical shared-host web account with no |
| 42 | privileges beyond port 80 HTTP access and CGI. It is not necessary |
| 43 | to have a dedicated computer with administrator privileges to run Fossil. |
| 44 | As far as we are aware, |
| 45 | Fossil is the only full-featured configuration management system |
| 46 | that can run in |
| 47 | such a restricted environment. The CGI script that ran on the |
| 48 | Hurricane Electric server was the same as the CGI script shown above, |
| 49 | except that the pathnames are modified to suit the environment: |
| 50 | |
| 51 | <blockquote><pre> |
| 52 | #!/home/hwaci/bin/fossil |
| 53 | repository: /home/hwaci/fossil/fossil.fossil |
| 54 | </pre></blockquote> |
| 55 | |
| 56 | In recent years, virtual private servers have become a more flexible and |
| 57 | less expensive hosting option compared to shared hosting accounts. |
| 58 | So on 2017-07-25, server (3) was moved |
| 59 | onto a $5/month "droplet" VPS from [https://www.digitalocean.com|Digital Ocean] |
| 60 | located in San Francisco. |
| 61 | |
| 62 | Server (3) is synchronized with the canonical server (1) by running |
| 63 | the following command via cron: |
| 64 | |
| 65 | <blockquote><pre> |
| 66 | /home/hwaci/bin/fossil sync -R /home/hwaci/fossil/fossil.fossil |
| 67 | </pre></blockquote> |
| 68 | |
| 69 | Server (2) is a |
| 70 | <a href="http://www.linode.com/">Linode 4096</a> located in Newark, NJ |
| 71 | and set up just like the canonical server (1) with the addition of a |
| 72 | cron job for synchronization as in server (3). |
| 73 |