the lighttpd 1.4.29 -- installation

xiaoxiao2021-03-01  19

[b]Step 0 [/b] System envrionment , Ubuntu 10.04 Downloading from [url]http://www.lighttpd.net/download[/url] [b]Step 1 [/b] sudo sutar -xf lighttpd-1.4.29.tar.gzcd lighttpd-1.4.29 [b] Step 2 installing dependencies[/b] apt-get install libssl-dev zlib1g-dev libbz2-dev libattr1-dev libpcre3-dev libmysqlclient15-dev libfam-dev libldap2-dev libfcgi-dev libgdbm-dev libmemcache-dev liblua5.1-0-dev pkg-config uuid-dev libsqlite3-dev libxml2-dev libkrb5-dev [b]Step 3 installing[/b] ./configure --prefix=/usr/local/lighttpdmake && make install [b]Step 4 configuration[/b] mkdir /etc/lighttpdcp doc/config/lighttpd.conf /etc/lighttpd/cp doc/config/modules.conf /etc/lighttpd/cp -r doc/config/conf.d/ /etc/lighttpd/ [b]Step 5 setting[/b] vi /etc/lighttpd/lighttpd.conf Now, you will see this line below, maybe you need to change the user name, that is my user for running the lighttpd. server.username = "www-data"server.groupname = "www-data" and, if your website root directory is here. var.server_root = "/var/www" So, mkdir /var/www/htdocstouch /var/www/htdocs/index.htmlecho 'Hello lighttpd!' >> /var/www/htdocs/index.html and open this line of commend, server.bind = "localhost" then set the port, server.port = 8080 Finally, typing this command in terminal, /usr/local/lighttpd/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf Now, opening your bowser with the address [url]http://localhost:8080 [/url] you will see 'Hello lighttpd!', good luck to you! In addition. you could add the command aliases to your ~/.bash_aliases alias lighttpd='/usr/local/lighttpd/sbin/lighttpd'alias lll='/usr/local/lighttpd/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf'alias www='cd /var/www/htdocs'
转载请注明原文地址: https://www.6miu.com/read-4050194.html

最新回复(0)