Server IP : 85.214.239.14 / Your IP : 18.191.37.129 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/doc/uwsgi-core/examples/wsgi/ |
Upload File : |
import uwsgi import os print("!!! uWSGI version:", uwsgi.version) def ciao(): print("modifica su /tmp") def ciao2(): print("nuovo uwsgi_server") print(os.getpid()) counter = 0 #if uwsgi.load_plugin(0, 'plugins/example/example_plugin.so', 'ciao'): # print("example plugin loaded") #else: # print("unable to load example plugin") #uwsgi.event_add(uwsgi.EVENT_FILE, "/tmp", ciao) #uwsgi.event_add(uwsgi.EVENT_DNSSD, "_uwsgi._tcp", ciao2) #uwsgi.event_add(uwsgi.EVENT_TIMER, 1000, ciao2) uwsgi.post_fork_hook = ciao2 def application(env, start_response): global counter #print(env) start_response('200 Ok', [('Content-type', 'text/plain')]) yield "hello world" yield "hello world2" for i in range(1,1000): yield str(i) yield "\n" yield str(counter) counter += 1