-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtightvncserver.conf
41 lines (37 loc) · 1.46 KB
/
tightvncserver.conf
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
37
38
39
40
##
## Configuration of the TightVNC Server.
##
## This file uses Perl syntax, although only one-line assignments
## are allowed. Assgnments can be applied to the following variables:
##
## $geometry -- desktop geometry, WIDTHxHEIGHT
## $depth -- color depth, bits per pixel (between 8 and 32)
## $desktopName -- X desktop name
## $vncClasses -- directory with the Java viewer applet
## $vncUserDir -- user-specific directory of TightVNC
## $fontPath -- X font path
## $authType -- argument to Xvnc specifying authentication type
## $colorPath -- optional path to X colors database
##
## These settings are the default. Uncomment and edit to change.
#
# $geometry = "1024x768";
# $depth = 24;
# $desktopName = "X";
# $vncClasses = "/usr/local/vnc/classes";
# $vncUserDir = "$ENV{HOME}/.vnc";
# $fontPath = "unix/:7100";
# $authType = "-rfbauth $vncUserDir/passwd";
# $colorPath = "/usr/lib/X11/rgb";
## Here is another example of setting the font path:
#
# $fontPath = "/usr/lib/X11/fonts/misc/"
# $fontPath = "$fontPath,/usr/lib/X11/fonts/75dpi/";
## You might wish to make your vnc directory under /tmp, to make sure
## passwords are always kept on the local filesystem. To do that, just
## uncomment the line below. Note that in this case Xvnc's .Xauthority
## file will be searched in the same $vncUserDir directory by default,
## and $ENV{HOME}/.vncstartup will be executed instead of usual
## $vncUserDir/xstartup.
#
# $vncUserDir = "/tmp/$ENV{USER}-vnc";