diff --git a/library/server/wsf/default/libfcgi-safe.ecf b/library/server/wsf/default/libfcgi-safe.ecf new file mode 100644 index 00000000..d645258f --- /dev/null +++ b/library/server/wsf/default/libfcgi-safe.ecf @@ -0,0 +1,22 @@ + + + + + + /EIFGENs$ + /\.git$ + /\.svn$ + + + + + + + + + + + + + diff --git a/library/server/wsf/default/libfcgi.ecf b/library/server/wsf/default/libfcgi.ecf new file mode 100644 index 00000000..c9fb2ca8 --- /dev/null +++ b/library/server/wsf/default/libfcgi.ecf @@ -0,0 +1,22 @@ + + + + + + /EIFGENs$ + /\.git$ + /\.svn$ + + + + + + + + + + + + + diff --git a/library/server/wsf/default/libfcgi/default_application.e b/library/server/wsf/default/libfcgi/default_application.e new file mode 100644 index 00000000..fd011bea --- /dev/null +++ b/library/server/wsf/default/libfcgi/default_application.e @@ -0,0 +1,32 @@ +note + description: "Summary description for {DEFAULT_APPLICATION}." + date: "$Date$" + revision: "$Revision$" + +deferred class + DEFAULT_APPLICATION + +inherit + WSF_APPLICATION + +feature {NONE} -- Initialization + + make_and_launch + local + conn: WGI_LIBFCGI_CONNECTOR + do + create conn.make (Current) + conn.launch + end + +note + copyright: "2011-2011, Eiffel Software and others" + license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" + source: "[ + Eiffel Software + 5949 Hollister Ave., Goleta, CA 93117 USA + Telephone 805-685-1006, Fax 805-685-6869 + Website http://www.eiffel.com + Customer support http://support.eiffel.com + ]" +end