Files
PVE-VDIClient/vdiclient.ini.example

64 lines
2.2 KiB
Plaintext
Raw Normal View History

2022-03-07 16:56:54 -06:00
[General]
# This is the title that is diplayed to the user
title = VDI Login
2023-02-03 15:57:12 -06:00
# This is the PySimpleGui Theme that is used. Run vdiclient.py with flag `--list_themes` for a list of themes
2022-03-07 16:56:54 -06:00
theme = LightBlue
# Program Icon
icon = vdiicon.ico
# Logo displayed on all windows
logo = vdiclient.png
# Enable Kiosk mode, which does not allow the user to close anything
kiosk = False
2022-07-11 14:07:32 -05:00
# Enable/Disable Fullscreen mode (not applicable in Kiosk mode)
fullscreen = True
# Disable viewer_kiosk mode if kiosk is set to true, this allows overriding remote_viewer kiosk mode
#viewer_kiosk = False
# Enable displaying SPICE ini file before opening virt-viewer
inidebug = False
2022-09-09 17:45:51 -08:00
# Select which guest types to display. Acceptable values: both, lxc, qemu
guest_type = both
# Show VM option for resetting VM
#show_reset = True
2023-09-14 20:35:27 -05:00
# Set Window Dimensions. Only use if window isn't sizing properly
#window_width = 800
#window_height = 600
2022-07-11 14:07:32 -05:00
2022-03-07 16:56:54 -06:00
[Authentication]
# This is the authentication backend that will be used to authenticate
auth_backend = pve
# If enabled, 2FA TOTP entry dialog will show
auth_totp = false
# If disabled, TLS certificate will not be checked
tls_verify = false
# User name (if using token)
2022-03-09 15:14:16 -09:00
#user = user
# API Token Name
#token_name = dvi
2022-09-09 17:45:51 -08:00
# API Token Value
2022-03-09 15:14:16 -09:00
#token_value = xxx-x-x-x-xxx
2023-10-13 13:42:33 -05:00
# Password Reset Command Launch. Has to be full executable Command
#pwresetcmd = start chrome --app=http://pwreset.example.com
2023-10-13 14:22:08 -05:00
# Automatically connect to a VMID upon authentication
#auto_vmid = 100
2022-03-07 16:56:54 -06:00
[Hosts]
# Hosts are entered as `IP/FQDN = Port`
10.10.10.100 = 8006
pve1.example.com = 8006
[SpiceProxyRedirect]
# The Spice Proxy provided by the Proxmox API may need to have its host/port rewritten
2022-03-07 16:56:54 -06:00
# These rewrite rules are written `IP:port = IP:port`
2022-05-13 15:53:37 +02:00
# 1. Use the inidebug and read the current proxy=pve1.example.com:3128
# 2. Add your proxmox ip to the right side e.g. 123.123.123.123:6000
pve1.example.com:3128 = 123.123.123.123:6000
#[AdditionalParameters]
# If you wish to define additional parameters to pass to virt-viewer you may define them here
# More parameter definitions here: https://www.mankier.com/1/remote-viewer
# Some Examples:
# Enable USB passthrough
#enable-usbredir = true
# Enable auto USB device sharing
#enable-usb-autoshare = true