From c258d10d15d5276e338cbe0e9059ba7234dc1144 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Fri, 3 May 2019 20:07:19 -0700 Subject: [PATCH] removed options_std.py, no longer necssary since options can be passed as command line arguments --- examples/options_std.py | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 examples/options_std.py diff --git a/examples/options_std.py b/examples/options_std.py deleted file mode 100644 index 6a7d822f..00000000 --- a/examples/options_std.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- - -# when web2py is run as a windows service (web2py.py -W) -# it does not load the command line options but it -# expects to find configuration settings in a file called -# -# web2py/options.py -# -# this file is an example for options.py - -import socket -import os - -ip = '0.0.0.0' -port = 80 -interfaces = [('0.0.0.0', 80)] - #,('0.0.0.0',443,'ssl_private_key.pem','ssl_certificate.pem')] -password = '' # ## means use the previous password -pid_filename = 'httpserver.pid' -log_filename = 'httpserver.log' -profiler_filename = None -ssl_certificate = '' # 'ssl_certificate.pem' # ## path to certificate file -ssl_private_key = '' # 'ssl_private_key.pem' # ## path to private key file -#numthreads = 50 # ## deprecated; remove -minthreads = None -maxthreads = None -server_name = socket.gethostname() -request_queue_size = 5 -timeout = 30 -shutdown_timeout = 5 -folder = os.getcwd() -extcron = None -nocron = None