Projects tagged ‘apache’ and ‘httpd’


Jump to tag:

Projects tagged ‘apache’ and ‘httpd’

Filtered by Project Tags apache httpd

Refine results Project Tags web (7) server (4) module (4) hosting (3) subversion (3) svn (3) php (3) perl (3) security (3) development (3) internet (3) http (2)

[18 total ]

3091USERS
   

The Apache HTTP Server Project is a collaborative software development effort aimed at creating a robust, commercial-grade, featureful, and freely-available source code implementation of an HTTP (Web) server. The project is jointly managed by a group ... [More] of volunteers located around the world, using the Internet and the Web to communicate, plan, and develop the server and its related documentation. This project is part of the Apache Software Foundation. In addition, hundreds of users have contributed ideas, code, and documentation to the project. [Less]

162USERS
   

Advanced Web Statistics (AWStats) is a free powerful Web server logfile analyzer (Perl script) that shows you all your Web statistics including visits, unique visitors, pages, hits, rush hours, search engines, keywords used to find your site, robots ... [More] , broken links, and more. It works with both IIS 5.0+ and Apache Web server log files as a CGI and/or from the command line. It also supports multiple languages including English, French, Dutch, Spanish, Italian, German, Polish, and Greek. [Less]

72USERS
   

XAMPP is an easy to (optionally) install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start. This includes XAMPP Lite, an additional extra small XAMPP edition. ... [More] It's the successor of the old MiniXAMPP. Get a fully functional web server within minutes under Windows, Mac OS X, Linux and Solaris. [Less]

20USERS
   

Apache Tomcat Connectors produces web server plugins to connect Apache HTTPS, IIS or Sun web server with backend server via the AJP protocol. The most important backend example is Apache Tomcat.

7USERS
 

WSO2 Identity Solution will provide the following components to enable CardSpace authentication. The Set of Components 1. A set of Relying Party components Relying party components will include an Apache HTTPD module and a Servlet ... [More] filter. The HTTPD module can be used with any Web application that is hosted with Apache HTTPD irrespective of the implementation language. The Servlet filter component is intended for Java based Web containers. 2. An Identity Provider This is the security token service that one can deploy to issue tokens to trusted users of a web application. The CardSpace identity selector will obtain tokens from the Identity Provider and authenticate the users to the Web applications with those tokens. [Less]

4USERS
 

The Uniform Server is a WAMP package that allows you to run a server on any MS Windows OS based computer. It is small and mobile to download or move around and can also be used or setup as a production/live server. Developers also use The Uniform Server to test their applications made with either PHP, MySQL, Perl, or the Apache HTTPd Server.

2USERS

FTP protocol module for Apache 2.x

1USERS

mod_graphics is a apache module designed to generate images automatically based on parameters in the URL request. Initially it has 2 supported features: Circles - Inputs: radius, foreground, background color Gradient - Inputs: orientation ... [More] (vertical or horizontal), start color. end color, length (pixels). - Returns a 1xlength image in the format specified The module was inspired by - ngx_http_circle_gif_modulehttp://wiki.codemongers.com/http://wiki.codemongers.com/NginxHttpCircleGifModule Notes: - Source only - tested on Centos i386 and x64 platforms - requires ImageMagick [Less]

0USERS

1. IntroductionRecently, I am learning scala, I am very interested in its actor libarary. Actor is a very powerful method to handle concurrent connections. And I want to write a simple httpd server using actors. Currently, It only serves static ... [More] pages. I wrote this in 435 lines of scala code, including comments. It supass lighttpd by a much faster responsive speed, really amazing. 2.Usage:$ scala -cp httpd.jar -Dscala.host=0.0.0.0 -Dscala.port=8000 -Dscala.htdocs=/path/doc com.ropzsu.scalaWeb.httpd 3.Depends:You must have log4j.jar in you scala classpath. 4. Benchmark (scala vs lighttpd) (for small page)Note: This test is running in VMWare. Host OS: windows XP, 2G memory, AMD 4400+ CPU Guest OS: Redhat AS4U5, with 800M memoryA. Scalaserver 0.1 Requests per second: 904.58 [#/sec] (mean) Time per request: 1105.483 [ms] (mean) Time per request: 1.105 [ms] (mean, across all concurrent requests) B. lighttpd 1.4.19 Requests per second: 406.52 [#/sec] (mean) Time per request: 2459.922 [ms] (mean) Time per request: 2.460 [ms] (mean, across all concurrent requests) Note: Although the above result seems to show that scalaserver is faster, but in really host, lighttpd is much faster. I think that's because lighttpd perform too slow IO operations in VMWare, in real host, lighttpd can perform io in speed of light. 5. scalaserver in action [Less]

0USERS

This module implements Windows CardSpace authentication support for Apache HTTPD. It acts as a relying party, accepting information cards from the user and verifying them.

0USERS

Scheme language module for Apache HTTP Server 2.x Low level scheme module that just echoes back the posted/query params. Note the close correspondence with Apache APIs The code in SVN works with Apache 2.2.6 ;;use httpd.h util_filter.h and ... [More] apr_buckets.h (use apache:httpd) (use apache:util_filter) (use apache:apr_buckets) ;;no debug (scheme:trace 0) ;;main part (define (do_service req) (display (apache:read_string (apache:request_rec->args req))) ;;read_post_data prints it out to front end. (read_post_data req)) ;;function is just a wrapped continuation. Used so that ;;I can use return from inside. (function (for_each_brigade_loop bb) (let loop_brigades ((bucket (apr:brigade_first bb))) (if (not (eq? bucket (apr:brigade_sentinel bb))) (begin (if (apr:bucket_is_eos bucket) (return 1));;break / return from for_each (if (not (apr:bucket_is_flush bucket)) (let ((data (apache:new_ptr))(len 0)) (apr:bucket_read bucket data len apr:block_read) (display (apache:nread_string data len)) (loop_brigades (apr:bucket_next bucket))) (loop_brigades (apr:bucket_next bucket)))) 0)));;if sentinel return seen_eos 0 (function (read_post_data req) (let* ((bb (apr:brigade_create (apache:request_rec->pool req) (apache:request_rec->connection req) (apache:conn_rec->bucket_alloc (apache:request_rec->connection req)))) (seen_eos 0) (postdata (apache:new_ptr)) (start 0) (huge_len 8192)) ;;while !seen_eos (let while_not_seen_eos_loop ((rv)) (set! rv (ap:get_brigade (apache:request_rec->input_filters req) bb ap:mode_readbytes apr:block_read huge_len)) (if (not (= apr:success rv)) (return rv)) (set! seen_eos (for_each_brigade_loop bb)) (apr:brigade_cleanup bb) (if (= 0 seen_eos) (while_not_seen_eos_loop))))) [Less]

0USERS

C-language implementation of the Atom Publishing Protocol server function, implemented as an Apache module. Data storage is in the filesystem. Configuration is minimal. STATUS: Passes the Atom Protocol Emulator tests and thus may be claimed to be ... [More] a conformant implementation of Atompub, RFC5023. Has not been widely deployed in production (that I know of). The build system still needs some work, is only known to work on OS X and Debian. [Less]

0USERS

svn-web-admin is a web application that allow you to manager users, groups and access to a subversion server configured via Apache Httpd (mod_dav, mod_dav_svn, mod_authz_svn). For subversion server configuration details, see Chapter 6. Server ... [More] Configuration of the free Version Control with Subversion online book. This subversion configuration is most commonly used with the CollabNet's Subversion. Software Requirements: Java SE 5 Ant 1.7.0 Servlet Container of choice (e.g. Tomcat) Also, ensure you have htpasswd script installed (see HTTP Server documentation), and read/write access to the subversion access (AuthzSVNAccessFile) and user authorization (AuthUserFile) files. Build instructions: - Execute: ant warOptionally you can deploy the binary release svn-web-admin-1.0.war (compiled in Java SE 6) Installation instructions: - Deploy war to Servlet Container - Edit 'svnwebadmin.properties' inside WEB-INF/classes to match environment - Start ContainerScreenshot: svn-web-admin uses GWT Please contact the project owner with any questions or issues: [Less]

0USERS

a small and light web server and thanks for shttpd created by Sergey Lyubka

0USERS

svnhttpd is a Subversion Server that based on Twisted Web framework, which is a fast event-driven networking engine and it's extremely stable.

0USERS

There are very few utilities that provide detailed analysis of one's server logs. The main reason for this, IMO, is the high barrier-to-entry of reading Apache logs. This program solves that problem by allowing you to import your server logs into a ... [More] SQL database. I'm hoping that people will take it from there, and write programs to analyze web traffic from the database, which is much easier than reading a log. You can even do basic analysis yourself, if you're proficient with SQL, using your SQL implementation's live query prompt. Examples: select * from table_name where timestamp = 2007-03-20; select * from table_name where pathname like '/blog%'; [Less]

0USERS

Aim to provide a integrated Subversion Environment to descrease the configuration task.

0USERS

For developers who use the Apache web server on their local boxes and use VirtualHosts for multiple projects. Traditionally, the best way to do this is also to modify the developer's hosts file on the machine to map certain domains to the projects. ... [More] This application will ease the management of these sites by providing a well designed user interface that allows them to add, delete, edit sites as VirtualHosts. [Less]