├── README.md ├── rmLighttpd-Link.sh └── upload ├── home └── steam │ └── http │ ├── live │ └── index.html │ └── serve.conf └── usr └── local ├── lib ├── mod_access.la ├── mod_access.so ├── mod_accesslog.la ├── mod_accesslog.so ├── mod_alias.la ├── mod_alias.so ├── mod_auth.la ├── mod_auth.so ├── mod_authn_file.la ├── mod_authn_file.so ├── mod_cgi.la ├── mod_cgi.so ├── mod_compress.la ├── mod_compress.so ├── mod_deflate.la ├── mod_deflate.so ├── mod_dirlisting.la ├── mod_dirlisting.so ├── mod_evasive.la ├── mod_evasive.so ├── mod_evhost.la ├── mod_evhost.so ├── mod_expire.la ├── mod_expire.so ├── mod_extforward.la ├── mod_extforward.so ├── mod_fastcgi.la ├── mod_fastcgi.so ├── mod_flv_streaming.la ├── mod_flv_streaming.so ├── mod_indexfile.la ├── mod_indexfile.so ├── mod_proxy.la ├── mod_proxy.so ├── mod_redirect.la ├── mod_redirect.so ├── mod_rewrite.la ├── mod_rewrite.so ├── mod_rrdtool.la ├── mod_rrdtool.so ├── mod_scgi.la ├── mod_scgi.so ├── mod_secdownload.la ├── mod_secdownload.so ├── mod_setenv.la ├── mod_setenv.so ├── mod_simple_vhost.la ├── mod_simple_vhost.so ├── mod_ssi.la ├── mod_ssi.so ├── mod_staticfile.la ├── mod_staticfile.so ├── mod_status.la ├── mod_status.so ├── mod_uploadprogress.la ├── mod_uploadprogress.so ├── mod_userdir.la ├── mod_userdir.so ├── mod_usertrack.la ├── mod_usertrack.so ├── mod_vhostdb.la ├── mod_vhostdb.so ├── mod_webdav.la ├── mod_webdav.so ├── mod_wstunnel.la └── mod_wstunnel.so ├── sbin ├── lighttpd └── lighttpd-angel └── share └── man └── man8 ├── lighttpd-angel.8 └── lighttpd.8 /README.md: -------------------------------------------------------------------------------- 1 | # lighttpd-Link 2 | A lighttpd powered lightweight web server for the Steam Link 3 | 4 | ![](https://i.imgur.com/EGgvc40.png) 5 | 6 | Could be used for system monitoring pages, web dashboards and so on... 7 | 8 | **ALSO AVAILABLE WITH 100% MORE PHP 7: 9 | https://github.com/fuzzymannerz/lighttpd-link-php7** 10 | 11 | ---- 12 | 13 | # Requirements 14 | - A Steam Link (obviously) 15 | - SSH access to said Steam Link ([How to do just that](https://github.com/ValveSoftware/steamlink-sdk#ssh-access)) 16 | 17 | ---- 18 | 19 | # How To Install 20 | 1. [Download the archive](https://github.com/fuzzymannerz/lighttpd-Link/archive/master.zip) and extract it somewhere. 21 | 2. Upload everything inside the "*Upload*" folder to the steam link's filesystem root via SSH. (Mounted or WinSCP etc...) 22 | 23 | ---- 24 | 25 | # Usage 26 | ### To Start: 27 | ```bash 28 | lighttpd -f /home/steam/http/serve.conf 29 | ``` 30 | 31 | Note: You may first need to `chmod +x /usr/local/sbin/lighttpd` 32 | 33 | It will now run as a background process until stopped or until the Steam Link is turned off. 34 | ### To Stop: 35 | ```bash 36 | pkill lighttpd 37 | ``` 38 | See `home/steam/http/serve.conf` for a basic configuration example. 39 | Refer to https://redmine.lighttpd.net/projects/1/wiki/TutorialConfiguration for more info. 40 | 41 | ---- 42 | 43 | # Uninstallation 44 | If you factory reset your Steam Link lighttpd-Link will be removed. 45 | Otherwise you can run the fancy uninstall script. 46 | 47 | **To unininstall everything, including the "*/home/steam/http*" folder:** 48 | ```bash 49 | wget https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/master/rmLighttpd-Link.sh && chmod +x rmLighttpd-Link.sh && sh rmLighttpd-Link.sh 50 | ``` 51 | 52 | **To just remove all files apart from the "*/home/steam/http*" folder:** 53 | ```bash 54 | wget https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/master/rmLighttpd-Link.sh && chmod +x rmLighttpd-Link.sh && sh rmLighttpd-Link.sh keephttp 55 | ``` 56 | -------------------------------------------------------------------------------- /rmLighttpd-Link.sh: -------------------------------------------------------------------------------- 1 | #!/bin/ash 2 | 3 | # Removes lighttpd-Link 4 | # (https://github.com/fuzzymannerz/lighttpd-Link) 5 | 6 | ######################################################################################### 7 | ## IMPORTANT: Running this script as-is will also remove your "http" folder by default.## 8 | ######################################################################################### 9 | 10 | printf "\033c" #Clears the screen for ease of reading 11 | 12 | echo "" 13 | echo -e "###############################################################################################" 14 | echo -e "## This will UNINSTALL lighttpd-Link from your Steam Link. ##" 15 | echo -e "## ##" 16 | echo -e "## If you run this script with \"keephttp\" it will not remove any files in \"/home/steam/http\" ##" 17 | echo -e "## (Otherwise, by default, this folder is removed.) ##" 18 | echo -e "## ##" 19 | echo -e "## If you have any issues then please go to https://github.com/fuzzymannerz/lighttpd-Link ##" 20 | echo -e "###############################################################################################" 21 | echo "" 22 | 23 | 24 | # Function to remove the files 25 | uninstall (){ 26 | 27 | if [ $1 == true ] # If excluding the http DIR 28 | then 29 | printf "\033c" #Clears the screen for ease of reading 30 | echo -e "\e[1mRemoving installed Lighttpd-Link files...\e[0m" 31 | echo -e "\e[1m(Not including the \"/home/steam/http\" directory)\e[0m" 32 | 33 | rm /usr/local/lib/mod_access.la /usr/local/lib/mod_access.so /usr/local/lib/mod_accesslog.la /usr/local/lib/mod_accesslog.so /usr/local/lib/mod_alias.la /usr/local/lib/mod_alias.so /usr/local/lib/mod_auth.la /usr/local/lib/mod_auth.so /usr/local/lib/mod_authn_file.la /usr/local/lib/mod_authn_file.so /usr/local/lib/mod_cgi.la /usr/local/lib/mod_cgi.so /usr/local/lib/mod_compress.la /usr/local/lib/mod_compress.so /usr/local/lib/mod_deflate.la /usr/local/lib/mod_deflate.so /usr/local/lib/mod_dirlisting.la /usr/local/lib/mod_dirlisting.so /usr/local/lib/mod_evasive.la /usr/local/lib/mod_evasive.so /usr/local/lib/mod_evhost.la /usr/local/lib/mod_evhost.so /usr/local/lib/mod_expire.la /usr/local/lib/mod_expire.so /usr/local/lib/mod_extforward.la /usr/local/lib/mod_extforward.so /usr/local/lib/mod_fastcgi.la /usr/local/lib/mod_fastcgi.so /usr/local/lib/mod_flv_streaming.la /usr/local/lib/mod_flv_streaming.so /usr/local/lib/mod_indexfile.la /usr/local/lib/mod_indexfile.so /usr/local/lib/mod_proxy.la /usr/local/lib/mod_proxy.so /usr/local/lib/mod_redirect.la /usr/local/lib/mod_redirect.so /usr/local/lib/mod_rewrite.la /usr/local/lib/mod_rewrite.so /usr/local/lib/mod_rrdtool.la /usr/local/lib/mod_rrdtool.so /usr/local/lib/mod_scgi.la /usr/local/lib/mod_scgi.so /usr/local/lib/mod_secdownload.la /usr/local/lib/mod_secdownload.so /usr/local/lib/mod_setenv.la /usr/local/lib/mod_setenv.so /usr/local/lib/mod_simple_vhost.la /usr/local/lib/mod_simple_vhost.so /usr/local/lib/mod_ssi.la /usr/local/lib/mod_ssi.so /usr/local/lib/mod_staticfile.la /usr/local/lib/mod_staticfile.so /usr/local/lib/mod_status.la /usr/local/lib/mod_status.so /usr/local/lib/mod_uploadprogress.la /usr/local/lib/mod_uploadprogress.so /usr/local/lib/mod_userdir.la /usr/local/lib/mod_userdir.so /usr/local/lib/mod_usertrack.la /usr/local/lib/mod_usertrack.so /usr/local/lib/mod_vhostdb.la /usr/local/lib/mod_vhostdb.so /usr/local/lib/mod_webdav.la /usr/local/lib/mod_webdav.so /usr/local/lib/mod_wstunnel.la /usr/local/lib/mod_wstunnel.so /usr/local/sbin/lighttpd /usr/local/sbin/lighttpd-angel /usr/local/share/man/man8/lighttpd-angel.8 /usr/local/share/man/man8/lighttpd.8 34 | 35 | echo "" 36 | echo -e "\e[40m\e[1m\e[92mUninstall complete!\e[0m" 37 | echo -e "Goodbye!" 38 | echo "" 39 | exit 1 40 | fi 41 | 42 | if [ $1 == false ] # Delete all files, including http DIR 43 | then 44 | printf "\033c" #Clears the screen for ease of reading 45 | echo -e "\e[1mRemoving all installed Lighttpd-Link files...\e[0m" 46 | 47 | rm /usr/local/lib/mod_access.la /usr/local/lib/mod_access.so /usr/local/lib/mod_accesslog.la /usr/local/lib/mod_accesslog.so /usr/local/lib/mod_alias.la /usr/local/lib/mod_alias.so /usr/local/lib/mod_auth.la /usr/local/lib/mod_auth.so /usr/local/lib/mod_authn_file.la /usr/local/lib/mod_authn_file.so /usr/local/lib/mod_cgi.la /usr/local/lib/mod_cgi.so /usr/local/lib/mod_compress.la /usr/local/lib/mod_compress.so /usr/local/lib/mod_deflate.la /usr/local/lib/mod_deflate.so /usr/local/lib/mod_dirlisting.la /usr/local/lib/mod_dirlisting.so /usr/local/lib/mod_evasive.la /usr/local/lib/mod_evasive.so /usr/local/lib/mod_evhost.la /usr/local/lib/mod_evhost.so /usr/local/lib/mod_expire.la /usr/local/lib/mod_expire.so /usr/local/lib/mod_extforward.la /usr/local/lib/mod_extforward.so /usr/local/lib/mod_fastcgi.la /usr/local/lib/mod_fastcgi.so /usr/local/lib/mod_flv_streaming.la /usr/local/lib/mod_flv_streaming.so /usr/local/lib/mod_indexfile.la /usr/local/lib/mod_indexfile.so /usr/local/lib/mod_proxy.la /usr/local/lib/mod_proxy.so /usr/local/lib/mod_redirect.la /usr/local/lib/mod_redirect.so /usr/local/lib/mod_rewrite.la /usr/local/lib/mod_rewrite.so /usr/local/lib/mod_rrdtool.la /usr/local/lib/mod_rrdtool.so /usr/local/lib/mod_scgi.la /usr/local/lib/mod_scgi.so /usr/local/lib/mod_secdownload.la /usr/local/lib/mod_secdownload.so /usr/local/lib/mod_setenv.la /usr/local/lib/mod_setenv.so /usr/local/lib/mod_simple_vhost.la /usr/local/lib/mod_simple_vhost.so /usr/local/lib/mod_ssi.la /usr/local/lib/mod_ssi.so /usr/local/lib/mod_staticfile.la /usr/local/lib/mod_staticfile.so /usr/local/lib/mod_status.la /usr/local/lib/mod_status.so /usr/local/lib/mod_uploadprogress.la /usr/local/lib/mod_uploadprogress.so /usr/local/lib/mod_userdir.la /usr/local/lib/mod_userdir.so /usr/local/lib/mod_usertrack.la /usr/local/lib/mod_usertrack.so /usr/local/lib/mod_vhostdb.la /usr/local/lib/mod_vhostdb.so /usr/local/lib/mod_webdav.la /usr/local/lib/mod_webdav.so /usr/local/lib/mod_wstunnel.la /usr/local/lib/mod_wstunnel.so /usr/local/sbin/lighttpd /usr/local/sbin/lighttpd-angel /usr/local/share/man/man8/lighttpd-angel.8 /usr/local/share/man/man8/lighttpd.8 48 | rm -rf /home/steam/http 49 | 50 | echo "" 51 | echo -e "\e[40m\e[1m\e[92mUninstall complete!\e[0m" 52 | echo -e "Goodbye!" 53 | echo "" 54 | exit 1 55 | fi 56 | } 57 | 58 | 59 | # Check for arguments 60 | if [ $# -gt 1 ] # If more than one is set. 61 | then 62 | echo -e "Only one argument is valid and that is \"\e[1mkeephttp\e[0m\"." 63 | echo -e "Please run the script again either with, or without \"\e[1mkeephttp\e[0m\"." 64 | echo "" 65 | exit 1 66 | fi 67 | 68 | if [ $# -eq 1 ] # If just one is set. 69 | then 70 | if [ $1 == "keephttp" ] # If it's the right one... 71 | then 72 | echo "" 73 | echo -e "\e[1m\e[32m\"keephttp\" detected.\e[0m The script will \e[1mNOT\e[0m remove your \"\e[34m/home/steam/http\e[0m\" directory!" 74 | echo -e "Press \e[1mENTER\e[0m to proceed or \e[1mCTRL+C\e[0m to cancel." 75 | read r 76 | echo "" 77 | uninstall "true" # uninstall and set keephttp to true 78 | else 79 | echo -e "Only one argument is valid and that is \"\e[1mkeephttp\e[0m\"." 80 | echo -e "Please run the script again either with, or without \"\e[1mkeephttp\e[0m\"." 81 | echo "" 82 | exit 1 83 | fi 84 | 85 | fi 86 | 87 | if [ $# -eq 0 ] # If no arguments are set 88 | then 89 | echo "" 90 | echo -e "\e[1m\e[31m\"keephttp\" NOT detected.\e[0m The script \e[1mWILL\e[0m remove your \"\e[34m/home/steam/http\e[0m\" directory!" 91 | echo -e "Press \e[1mENTER\e[0m to proceed or \e[1mCTRL+C\e[0m to cancel." 92 | read r 93 | uninstall "false" # uninstall and set keephttp to false 94 | fi -------------------------------------------------------------------------------- /upload/home/steam/http/live/index.html: -------------------------------------------------------------------------------- 1 | Hello world!
2 | This is a lightweight lighttpd powered web server running on a steam link.

3 | View more information and usage ideas on Github. -------------------------------------------------------------------------------- /upload/home/steam/http/serve.conf: -------------------------------------------------------------------------------- 1 | server.document-root = "/home/steam/http/live" 2 | 3 | server.port = 80 4 | 5 | mimetype.assign = ( 6 | ".html" => "text/html", 7 | ".txt" => "text/plain", 8 | ".jpg" => "image/jpeg", 9 | ".png" => "image/png" 10 | ) 11 | 12 | index-file.names = ( "index.html" ) -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_access.la: -------------------------------------------------------------------------------- 1 | # mod_access.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_access.so' 9 | 10 | # Names of this library. 11 | library_names='mod_access.so mod_access.so mod_access.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_access. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_access.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_access.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_accesslog.la: -------------------------------------------------------------------------------- 1 | # mod_accesslog.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_accesslog.so' 9 | 10 | # Names of this library. 11 | library_names='mod_accesslog.so mod_accesslog.so mod_accesslog.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_accesslog. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_accesslog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_accesslog.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_alias.la: -------------------------------------------------------------------------------- 1 | # mod_alias.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_alias.so' 9 | 10 | # Names of this library. 11 | library_names='mod_alias.so mod_alias.so mod_alias.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_alias. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_alias.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_alias.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_auth.la: -------------------------------------------------------------------------------- 1 | # mod_auth.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_auth.so' 9 | 10 | # Names of this library. 11 | library_names='mod_auth.so mod_auth.so mod_auth.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_auth. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_auth.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_auth.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_authn_file.la: -------------------------------------------------------------------------------- 1 | # mod_authn_file.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_authn_file.so' 9 | 10 | # Names of this library. 11 | library_names='mod_authn_file.so mod_authn_file.so mod_authn_file.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -lcrypt' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_authn_file. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_authn_file.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_authn_file.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_cgi.la: -------------------------------------------------------------------------------- 1 | # mod_cgi.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_cgi.so' 9 | 10 | # Names of this library. 11 | library_names='mod_cgi.so mod_cgi.so mod_cgi.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_cgi. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_cgi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_cgi.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_compress.la: -------------------------------------------------------------------------------- 1 | # mod_compress.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_compress.so' 9 | 10 | # Names of this library. 11 | library_names='mod_compress.so mod_compress.so mod_compress.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -lz -lbz2' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_compress. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_compress.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_compress.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_deflate.la: -------------------------------------------------------------------------------- 1 | # mod_deflate.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_deflate.so' 9 | 10 | # Names of this library. 11 | library_names='mod_deflate.so mod_deflate.so mod_deflate.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs=' -lz -lbz2' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_deflate. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_deflate.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_deflate.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_dirlisting.la: -------------------------------------------------------------------------------- 1 | # mod_dirlisting.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_dirlisting.so' 9 | 10 | # Names of this library. 11 | library_names='mod_dirlisting.so mod_dirlisting.so mod_dirlisting.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_dirlisting. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_dirlisting.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_dirlisting.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_evasive.la: -------------------------------------------------------------------------------- 1 | # mod_evasive.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_evasive.so' 9 | 10 | # Names of this library. 11 | library_names='mod_evasive.so mod_evasive.so mod_evasive.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_evasive. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_evasive.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_evasive.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_evhost.la: -------------------------------------------------------------------------------- 1 | # mod_evhost.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_evhost.so' 9 | 10 | # Names of this library. 11 | library_names='mod_evhost.so mod_evhost.so mod_evhost.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_evhost. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_evhost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_evhost.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_expire.la: -------------------------------------------------------------------------------- 1 | # mod_expire.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_expire.so' 9 | 10 | # Names of this library. 11 | library_names='mod_expire.so mod_expire.so mod_expire.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_expire. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_expire.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_expire.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_extforward.la: -------------------------------------------------------------------------------- 1 | # mod_extforward.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_extforward.so' 9 | 10 | # Names of this library. 11 | library_names='mod_extforward.so mod_extforward.so mod_extforward.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_extforward. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_extforward.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_extforward.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_fastcgi.la: -------------------------------------------------------------------------------- 1 | # mod_fastcgi.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_fastcgi.so' 9 | 10 | # Names of this library. 11 | library_names='mod_fastcgi.so mod_fastcgi.so mod_fastcgi.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_fastcgi. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_fastcgi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_fastcgi.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_flv_streaming.la: -------------------------------------------------------------------------------- 1 | # mod_flv_streaming.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_flv_streaming.so' 9 | 10 | # Names of this library. 11 | library_names='mod_flv_streaming.so mod_flv_streaming.so mod_flv_streaming.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_flv_streaming. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_flv_streaming.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_flv_streaming.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_indexfile.la: -------------------------------------------------------------------------------- 1 | # mod_indexfile.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_indexfile.so' 9 | 10 | # Names of this library. 11 | library_names='mod_indexfile.so mod_indexfile.so mod_indexfile.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_indexfile. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_indexfile.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_indexfile.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_proxy.la: -------------------------------------------------------------------------------- 1 | # mod_proxy.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_proxy.so' 9 | 10 | # Names of this library. 11 | library_names='mod_proxy.so mod_proxy.so mod_proxy.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_proxy. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_proxy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_proxy.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_redirect.la: -------------------------------------------------------------------------------- 1 | # mod_redirect.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_redirect.so' 9 | 10 | # Names of this library. 11 | library_names='mod_redirect.so mod_redirect.so mod_redirect.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_redirect. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_redirect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_redirect.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_rewrite.la: -------------------------------------------------------------------------------- 1 | # mod_rewrite.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_rewrite.so' 9 | 10 | # Names of this library. 11 | library_names='mod_rewrite.so mod_rewrite.so mod_rewrite.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_rewrite. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_rewrite.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_rewrite.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_rrdtool.la: -------------------------------------------------------------------------------- 1 | # mod_rrdtool.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_rrdtool.so' 9 | 10 | # Names of this library. 11 | library_names='mod_rrdtool.so mod_rrdtool.so mod_rrdtool.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_rrdtool. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_rrdtool.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_rrdtool.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_scgi.la: -------------------------------------------------------------------------------- 1 | # mod_scgi.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_scgi.so' 9 | 10 | # Names of this library. 11 | library_names='mod_scgi.so mod_scgi.so mod_scgi.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_scgi. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_scgi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_scgi.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_secdownload.la: -------------------------------------------------------------------------------- 1 | # mod_secdownload.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_secdownload.so' 9 | 10 | # Names of this library. 11 | library_names='mod_secdownload.so mod_secdownload.so mod_secdownload.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_secdownload. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_secdownload.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_secdownload.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_setenv.la: -------------------------------------------------------------------------------- 1 | # mod_setenv.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_setenv.so' 9 | 10 | # Names of this library. 11 | library_names='mod_setenv.so mod_setenv.so mod_setenv.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_setenv. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_setenv.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_setenv.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_simple_vhost.la: -------------------------------------------------------------------------------- 1 | # mod_simple_vhost.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_simple_vhost.so' 9 | 10 | # Names of this library. 11 | library_names='mod_simple_vhost.so mod_simple_vhost.so mod_simple_vhost.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_simple_vhost. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_simple_vhost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_simple_vhost.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_ssi.la: -------------------------------------------------------------------------------- 1 | # mod_ssi.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_ssi.so' 9 | 10 | # Names of this library. 11 | library_names='mod_ssi.so mod_ssi.so mod_ssi.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_ssi. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_ssi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_ssi.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_staticfile.la: -------------------------------------------------------------------------------- 1 | # mod_staticfile.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_staticfile.so' 9 | 10 | # Names of this library. 11 | library_names='mod_staticfile.so mod_staticfile.so mod_staticfile.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_staticfile. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_staticfile.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_staticfile.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_status.la: -------------------------------------------------------------------------------- 1 | # mod_status.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_status.so' 9 | 10 | # Names of this library. 11 | library_names='mod_status.so mod_status.so mod_status.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_status. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_status.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_status.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_uploadprogress.la: -------------------------------------------------------------------------------- 1 | # mod_uploadprogress.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_uploadprogress.so' 9 | 10 | # Names of this library. 11 | library_names='mod_uploadprogress.so mod_uploadprogress.so mod_uploadprogress.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_uploadprogress. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_uploadprogress.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_uploadprogress.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_userdir.la: -------------------------------------------------------------------------------- 1 | # mod_userdir.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_userdir.so' 9 | 10 | # Names of this library. 11 | library_names='mod_userdir.so mod_userdir.so mod_userdir.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_userdir. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_userdir.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_userdir.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_usertrack.la: -------------------------------------------------------------------------------- 1 | # mod_usertrack.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_usertrack.so' 9 | 10 | # Names of this library. 11 | library_names='mod_usertrack.so mod_usertrack.so mod_usertrack.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_usertrack. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_usertrack.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_usertrack.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_vhostdb.la: -------------------------------------------------------------------------------- 1 | # mod_vhostdb.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_vhostdb.so' 9 | 10 | # Names of this library. 11 | library_names='mod_vhostdb.so mod_vhostdb.so mod_vhostdb.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_vhostdb. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_vhostdb.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_vhostdb.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_webdav.la: -------------------------------------------------------------------------------- 1 | # mod_webdav.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_webdav.so' 9 | 10 | # Names of this library. 11 | library_names='mod_webdav.so mod_webdav.so mod_webdav.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_webdav. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_webdav.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_webdav.so -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_wstunnel.la: -------------------------------------------------------------------------------- 1 | # mod_wstunnel.la - a libtool library file 2 | # Generated by libtool (GNU libtool) 2.4.6 3 | # 4 | # Please DO NOT delete this file! 5 | # It is necessary for linking the library. 6 | 7 | # The name that we can dlopen(3). 8 | dlname='mod_wstunnel.so' 9 | 10 | # Names of this library. 11 | library_names='mod_wstunnel.so mod_wstunnel.so mod_wstunnel.so' 12 | 13 | # The name of the static archive. 14 | old_library='' 15 | 16 | # Linker flags that cannot go in dependency_libs. 17 | inherited_linker_flags='' 18 | 19 | # Libraries that this one depends upon. 20 | dependency_libs='' 21 | 22 | # Names of additional weak libraries provided by this library 23 | weak_library_names='' 24 | 25 | # Version information for mod_wstunnel. 26 | current=0 27 | age=0 28 | revision=0 29 | 30 | # Is this an already installed library? 31 | installed=yes 32 | 33 | # Should we warn about portability when linking against -modules? 34 | shouldnotlink=yes 35 | 36 | # Files to dlopen/dlpreopen 37 | dlopen='' 38 | dlpreopen='' 39 | 40 | # Directory that this library needs to be installed in: 41 | libdir='/usr/local/lib' 42 | -------------------------------------------------------------------------------- /upload/usr/local/lib/mod_wstunnel.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/lib/mod_wstunnel.so -------------------------------------------------------------------------------- /upload/usr/local/sbin/lighttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/sbin/lighttpd -------------------------------------------------------------------------------- /upload/usr/local/sbin/lighttpd-angel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzymannerz/lighttpd-Link/85ac56c0dd3fd8df8522e87cfd18d1d371786d24/upload/usr/local/sbin/lighttpd-angel -------------------------------------------------------------------------------- /upload/usr/local/share/man/man8/lighttpd-angel.8: -------------------------------------------------------------------------------- 1 | .TH LIGHTTPD-ANGEL "8" "2016-10-18" "" "" 2 | . 3 | .SH NAME 4 | lighttpd-angel \- monitor/supervise lighttpd daemon 5 | . 6 | .SH SYNOPSIS 7 | \fBlighttpd-angel\fP <\fBargs\fP> 8 | . 9 | .SH DESCRIPTION 10 | \fBlighttpd-angel\fP monitors/supervises lighttpd daemon (started with ). 11 | lighttpd-angel will restart lighttpd if lighttpd exits for any reason, other 12 | than by signals sent by lighttpd-angel. 13 | .PP 14 | Send lighttpd-angel SIGTERM to initiate immediate shutdown of lighttpd. 15 | .PP 16 | Send lighttpd-angel SIGINT to initiate graceful shutdown of lighttpd. 17 | .PP 18 | Send lighttpd-angel SIGHUP to initiate graceful restart of lighttpd. 19 | .PP 20 | Send lighttpd-angel SIGUSR1 to initiate graceful reload of lighttpd config. 21 | . 22 | .SH SEE ALSO 23 | Online Documentation: 24 | 25 | https://redmine.lighttpd.net/projects/lighttpd/wiki/InstallFromSource 26 | https://blog.lighttpd.net/articles/2007/09/02/there-is-an-angel-for-lighty/ 27 | . 28 | .SH AUTHOR 29 | Jan Kneschke 30 | -------------------------------------------------------------------------------- /upload/usr/local/share/man/man8/lighttpd.8: -------------------------------------------------------------------------------- 1 | .TH LIGHTTPD "8" "2009-03-07" "" "" 2 | . 3 | .SH NAME 4 | lighttpd \- a fast, secure and flexible web server 5 | . 6 | .SH SYNOPSIS 7 | \fBlighttpd\fP [\fB\-ptDvVh\fP] \fB\-f\fP \fIconfigfile\fP [\fB\-m\fP \fImoduledir\fP] 8 | . 9 | .SH DESCRIPTION 10 | \fBlighttpd\fP (pronounced 'lighty') is an advanced HTTP daemon that aims 11 | to be secure, fast, compliant and very flexible. It has been optimized for 12 | high performance. Its feature set includes, but is not limited to, FastCGI, 13 | CGI, basic and digest HTTP authentication, output compression, URL rewriting. 14 | .PP 15 | This manual page only lists the command line arguments. For details 16 | on how to configure \fBlighttpd\fP and its modules see the files in the 17 | doc-directory. 18 | . 19 | .SH OPTIONS 20 | The following options are supported: 21 | .TP 8 22 | \fB\-f\ \fP \fIconfigfile\fP 23 | Load configuration file \fIconfigfile\fP. 24 | .TP 8 25 | \fB\-m\ \fP \fImoduledir\fP 26 | Use 27 | \fImoduledir\fP 28 | as the directory that contains modules, instead of the default. 29 | .TP 8 30 | \fB\-p\fP 31 | Print the parsed configuration file in its internal form and exit. 32 | .TP 8 33 | \fB\-t\fP 34 | Test the configuration file for syntax errors and exit. 35 | .TP 8 36 | \fB\-tt\fP 37 | Test the configuration file for syntax errors, load and initialize modules, and exit. 38 | .TP 8 39 | \fB\-D\fP 40 | Do not daemonize (go into background). The default is to daemonize. 41 | .TP 8 42 | \fB\-i\ \fP \fIsecs\fP 43 | Trigger daemon graceful shutdown after \fIsecs\fP of inactivity. 44 | .TP 8 45 | \fB\-1\fP 46 | Process single (one) request on stdin socket, then exit. 47 | .TP 8 48 | \fB\-v\fP 49 | Show version and exit. 50 | .TP 8 51 | \fB\-V\fP 52 | Show compile-time features and exit. 53 | .TP 8 54 | \fB\-h\fP 55 | Show a brief help message and exit. 56 | . 57 | .SH FILES 58 | .TP 8 59 | /etc/lighttpd/lighttpd.conf 60 | The standard location for the configuration file. 61 | .TP 8 62 | /var/run/lighttpd.pid 63 | The standard location for the PID of the running \fBlighttpd\fP process. 64 | . 65 | .SH SEE ALSO 66 | Online Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/ 67 | .PP 68 | spawn-fcgi(1) 69 | .PP 70 | \fIHypertext Transfer Protocol -- HTTP/1.1\fP, RFC 2616. 71 | .PP 72 | \fIHTTP Authentication: Basic and Digest Access Authentication\fP, RFC 2617. 73 | .PP 74 | \fIThe Common Gateway Interface Version 1.1\fP, RFC 3875. 75 | .PP 76 | \fIThe FastCGI specification\fP. 77 | . 78 | .SH AUTHOR 79 | Jan Kneschke 80 | --------------------------------------------------------------------------------