Changeset 254:14418755bafb for uwsgi.c
Legend:
- Unmodified
- Added
- Removed
-
uwsgi.c
r253 r254 2225 2225 applications = PyDict_GetItemString (uwsgi_dict, "applications"); 2226 2226 if (!PyDict_Check (applications)) { 2227 fprintf (stderr, "uwsgi.applications dictionary is not defined, trying with the (deprecated)\"applications\" one...\n");2227 fprintf (stderr, "uwsgi.applications dictionary is not defined, trying with the \"applications\" one...\n"); 2228 2228 #endif 2229 2229 applications = PyDict_GetItemString (wsgi_dict, "applications"); … … 2699 2699 \t-b|--buffer-size <n>\t\tset buffer size to <n> bytes\n\ 2700 2700 \t-L|--disable-logging\t\tdisable request logging (only errors or server messages will be logged)\n\ 2701 \t-x|--xmlconfig <path>\t\tpath of xml config file (no ROCK_SOLID)\n\2702 \t-w|--module <module>\t\tname of python config module (no ROCK_SOLID)\n\2701 \t-x|--xmlconfig <path>\t\tpath of xml config file\n\ 2702 \t-w|--module <module>\t\tname of python config module\n\ 2703 2703 \t-t|--harakiri <sec>\t\tset harakiri timeout to <sec> seconds\n\ 2704 2704 \t-p|--processes <n>\t\tspawn <n> uwsgi worker processes\n\ 2705 \t-O|--optimize <n>\t\tset python optimization level to <n> (no ROCK_SOLID)\n\2705 \t-O|--optimize <n>\t\tset python optimization level to <n>\n\ 2706 2706 \t-v|--max-vars <n>\t\tset maximum number of vars/headers to <n>\n\ 2707 2707 \t-A|--sharedarea <n>\t\tcreate a shared memory area of <n> pages\n\ 2708 \t-c|--cgi-mode\t\t\tset cgi mode (no ROCK_SOLID)\n\2708 \t-c|--cgi-mode\t\t\tset cgi mode\n\ 2709 2709 \t-C|--chmod-socket\t\tchmod socket to 666\n\ 2710 \t-P|--profiler\t\t\tenable profiler (no ROCK_SOLID)\n\2710 \t-P|--profiler\t\t\tenable profiler\n\ 2711 2711 \t-m|--memory-report\t\tenable memory usage report\n\ 2712 \t-i|--single-interpreter\t\tsingle interpreter mode (no ROCK_SOLID)\n\2712 \t-i|--single-interpreter\t\tsingle interpreter mode\n\ 2713 2713 \t-a|--abstract-socket\t\tset socket in the abstract namespace (Linux only)\n\ 2714 \t-T|--enable-threads\t\tenable threads support (no ROCK_SOLID)\n\2714 \t-T|--enable-threads\t\tenable threads support\n\ 2715 2715 \t-M|--master\t\t\tenable master process manager\n\ 2716 2716 \t-H|--home <path>\t\tset python home/virtualenv\n\
