On Monday, 18 April 2016 15:40:17 UTC+10, Jostein Berntsen wrote: > > How to use app.py in the CGI setup. >
You configure your web server to execute the app.py file. It depends on which server you decide to use since they all have different configuration. Do you have a particular web server that you want to use? As an example, using lighttpd you might add something to it's configuration like: server.modules += ( "mod_cgi" ) cgi.assign = ( ".py" => "/usr/bin/python2" ) -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
