blog/test/index.cgi
Marc Beninca 6ada877b7f test
2021-04-05 11:31:51 +02:00

15 lines
272 B
Python
Executable file

#! /usr/bin/env python3
from waitress import serve
def app():
import web
web.print_headers_if_needed()
counter += 1
print('Counter: {}'.format(counter))
if __name__ == '__main__':
counter = 0
serve(app, unix_socket='/var/run/fcgiwrap.socket')