Я хочу настроить lighttpd на моем удаленном сервере Ubuntu и запустить приложение flask, но у меня возникают некоторые проблемы при использовании systemctl restart lighttpd
Вот журналы ошибок:
systemctl status lighttpd
● lighttpd.service - Lighttpd Daemon
Loaded: loaded (/lib/systemd/system/lighttpd.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since Tue 2019-01-15 14:31:38 UTC; 3s ago
Process: 19104 ExecStart=/usr/sbin/lighttpd -D -f /etc/lighttpd/lighttpd.conf (code=exited, status=255)
Process: 19097 ExecStartPre=/usr/sbin/lighttpd -t -f /etc/lighttpd/lighttpd.conf (code=exited, status=0/SUCCESS)
Main PID: 19104 (code=exited, status=255)
Jan 15 14:31:38 ubuntu systemd[1]: Starting Lighttpd Daemon...
Jan 15 14:31:38 ubuntu lighttpd[19097]: Syntax OK
Jan 15 14:31:38 ubuntu systemd[1]: Started Lighttpd Daemon.
Jan 15 14:31:38 ubuntu systemd[1]: lighttpd.service: Main process exited, code=exited, status=255/n/a
Jan 15 14:31:38 ubuntu systemd[1]: lighttpd.service: Unit entered failed state.
Jan 15 14:31:38 ubuntu systemd[1]: lighttpd.service: Failed with result 'exit-code'.
tail /var/log/lighttpd/error.log
2019-01-15 14:31:38: (log.c.164) server started
2019-01-15 14:31:38: (mod_fastcgi.c.1112) the fastcgi-backend /var/www/landing/landing.fcgi failed to start:
2019-01-15 14:31:38: (mod_fastcgi.c.1116) child exited with status 8 /var/www/landing/landing.fcgi
2019-01-15 14:31:38: (mod_fastcgi.c.1119) If you're trying to run your app as a FastCGI backend, make sure you're using the FastCGI-enabled version.
If this is PHP on Gentoo, add 'fastcgi' to the USE flags.
2019-01-15 14:31:38: (mod_fastcgi.c.1406) [ERROR]: spawning fcgi failed.
Вот мой lighttpd.conf
cat /etc/lighttpd/lighttpd.conf
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
"mod_fastcgi",
)
server.document-root = "/var/www/"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
fastcgi.server = (
"/" =>
((
"socket" => "/tmp/landing-fcgi.sock",
"bin-path" => "/var/www/landing/landing.fcgi",
"check-local" => "disable",
"max-procs" => 1
))
)
alias.url = (
"/static/" => "/var/www/landing/static/",
)
url.rewrite-once = (
"^(/static($|/.*))$" => "$1",
"^(/.*)$" => "/landing.fcgi$1"
)
И моя посадка. Фкги
from flup.server.fcgi import WSGISerever
import app
if __name__ == '__main__':
WSGIServer(app, bindAddress='/tmp/landing-fcgi.sock').run()