-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.py
36 lines (29 loc) · 1.99 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# User Configuration variable settings for webserver
# Done by - Claude Pageau
configTitle = "webserver Default Settings"
configName = "settings.py"
#======================================
# webserver.py Settings
#======================================
# Web Server settings
# -------------------
web_server_port = 8090 # default= 8080 Web server access port eg http://192.168.1.100:8080
web_server_root = "www" # default= "media" webserver root path to webserver image/video sub-folders
web_page_title = "My Webserver" # web page title that browser show (not displayed on web page)
web_page_refresh_on = True # Refresh True=On (per seconds below) False=Off (never)
web_page_refresh_sec = "900" # default= "900" seconds to wait for web page refresh seconds (15 minutes)
web_page_blank = False # True Starts left image with a blank page until a right menu item is selected
# False displays second list[1] item since first may be in progressx
# Left iFrame Image Settings
# --------------------------
web_image_height = "768" # default= "768" px height of images to display in iframe
web_iframe_width_usage = "75%" # Left Pane - Sets % of total screen width allowed for iframe. Rest for right list
web_iframe_width = "100%" # Desired frame width to display images. can be eg percent "80%" or px "1280"
web_iframe_height = "100%" # Desired frame height to display images. Scroll bars if image larger (percent or px)
# Right Side Files List
# ---------------------
web_max_list_entries = 0 # 0 = All or Specify Max right side file entries to show (must be > 1)
web_list_height = web_image_height # Right List - side menu height in px (link selection)
web_list_by_datetime = True # True=datetime False=filename
web_list_sort_descending = True # reverse sort order (filename or datetime per web_list_by_datetime setting
# ---------------------------------------------- End of User Variables -----------------------------------------------------