1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-20 10:48:40 +01:00
phorge-phorge/src/docs/configuration
Craig Silverstein d6e2e4e4c5 Add docs for using lighttpd as the webserver.
lighttpd could support rules like this, to add efficiency:

    # Aggressively cache all static files
    $HTTP["url"] =~ "\.(jpg|gif|png|css|js|htc)" {
        expire.url = ( "" => "access 1 years" )
    }

    # Compress files for faster transfer
    compress.filetype = (
        "text/plain",
        "text/html",
        "text/javascript",
        "text/css",
        "text/xml"
    )

    compress.cache-dir = <would need to set to something>?

I don't know if that is necessary or useful.  Probably not a good idea
at this point, where the code is changing so rapidly: a 1 year cache
of javascript code could cause trouble.  And i think the default
lighttpd.conf already compresses text/html, text/plain, text/css, and
application/x-javascript by default, so we're ok there (could add
text/javascript and text/xml, I guess).
2012-05-03 13:42:35 -07:00
..
configuration_guide.diviner Add docs for using lighttpd as the webserver. 2012-05-03 13:42:35 -07:00
configuring_accounts_and_registration.diviner Provide a script for batch creating user accounts 2012-01-06 11:50:51 -08:00
configuring_file_storage.diviner Fix URI typo in "Configuring File Storage" 2012-03-19 18:29:07 -07:00
configuring_inbound_email.diviner Enable support for a single reply-handler for outbound emails 2011-08-22 10:20:49 +02:00
configuring_outbound_email.diviner Move functionality of PhabricatorMetaMTADaemon to a worker task 2012-03-01 22:01:55 -08:00
managing_daemons.diviner Move functionality of PhabricatorMetaMTADaemon to a worker task 2012-03-01 22:01:55 -08:00