Differences between revisions 9 and 11 (spanning 2 versions)
Revision 9 as of 2013-08-29 01:13:40
Size: 379
Editor: GarlandMf
Comment:
Revision 11 as of 2013-08-29 12:32:01
Size: 1088
Editor: AugieFackler
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Angel Food Cake is a perfect dessert for any occasion, [[http://sanphamdien.com/banh-trung-thu-kinh-do-phu-song-thi-phan-khap-nuoc-ta/|banh trung thu]] graduations, or whatever color you wish your rainbow to be. Groom's cakes offer couples just one more chance to offer guests a sweet, decadent escape and they can be made from a different recipe, yet they are fine for humans. <<Include(A:style)>>

<!> This is considered a [[FeaturesOfLastResort|feature of last resort]].

Mercurial has limited support for serving from web servers with no CGI support.

To use, simply copy your project's repository files to a project directory on your server:

{{{
$ cd public_html
$ mkdir my-project
$ cp -a ../my-repo/.hg my-project
}}}

Alternately use a symlink. Copying can be accomplished via rsync, ftp, scp, etc., so long as all the files beneath .hg are copied.

Then you should be able to pull from this repo like so:

{{{
$ hg clone http://example.com/my-project
}}}

Mercurial will automatically (since version 1.1) detect that it should use the static HTTP protocol. If you are stuck with an older version, then use {{{static-http://example.com/my-project}}} as the clone URL.

This is not recommended for most projects because it can result in a very large number of requests.
Note that the web server must support HTTP range requests.

If at all possible, you should use a [[CGIinstall|CGI-based server]] instead.

----
CategoryWeb

{i} This page does not meet our wiki style guidelines. Please help improve this page by cleaning up its formatting.

<!> This is considered a feature of last resort.

Mercurial has limited support for serving from web servers with no CGI support.

To use, simply copy your project's repository files to a project directory on your server:

$ cd public_html
$ mkdir my-project
$ cp -a ../my-repo/.hg my-project

Alternately use a symlink. Copying can be accomplished via rsync, ftp, scp, etc., so long as all the files beneath .hg are copied.

Then you should be able to pull from this repo like so:

$ hg clone http://example.com/my-project

Mercurial will automatically (since version 1.1) detect that it should use the static HTTP protocol. If you are stuck with an older version, then use static-http://example.com/my-project as the clone URL.

This is not recommended for most projects because it can result in a very large number of requests. Note that the web server must support HTTP range requests.

If at all possible, you should use a CGI-based server instead.


CategoryWeb

StaticHTTP (last edited 2013-08-29 22:40:46 by rcl)