> In the configuration file pointed: > routing = false > minterpreters = false > > Despite this, after compilation received info: > > ################# uWSGI configuration ################# > > kernel = Linux > malloc = libc > locking = pthread_mutex > ini = True > event = epoll > pcre = True > snmp = False > capabilities = False > yaml = False > json = False > routing = True > ldap = False > sqlite3 = False > zeromq = False > sendfile = True > xml = False > udp = False > execinfo = False > ifaddrs = True > ipv6 = True > ssl = False > filemonitor = inotify > timer = timerfd > threading = True > plugin_dir = . > debug = False > async = False > spooler = False > minterpreters = True > > so minterpreters is True ?! > and: routing, sendfile, ipv6 >
Pretty strange, but the build system caches a lot of thing to avoid useless recompilations. Try running make clean, before. > What is ifaddrs? It is required for specifying address patterns, like socket = 192.*:3030 without ifaddrs it will be not supported. Regarding sendfile, do not remove it, as it is required for correct wsgi.file_wrapper hook. Without it, you could experiment heavy slowdown. -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
