Thanks Ron,

Now I use nginx with conf like this:

server {
        listen       8081;
        server_name  localhost;

    location ~ ^/(gwt)/  {
           root    C:/static/gwt;
           expires 30d;
        }

    location / {
           proxy_pass       http://localhost:8080;
        }
}

And fossil is started with:
fossil server --baseurl "http://localhost:8081/"; repo.db
... and is working nice.

My content is here:
http://localhost:8081/gwt/XXX
and JSON calls to http://localhost:8081/json/YYY

GWT dev mode is started with:
-noserver
-startupUrl

And I can run and debug in Eclipse. (But this is GWT specific)

I will check also:
http://fossil-scm.org/index.html/doc/tip/www/embeddeddoc.wiki

Thanks,
Petrica

>
> Also see the following for an additional way:
>
>    http://fossil-scm.org/index.html/doc/tip/www/embeddeddoc.wiki
>
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to