File: mapserver-sample.conf

package info (click to toggle)
mapserver 8.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,492 kB
  • sloc: ansic: 137,759; cpp: 124,149; python: 3,175; xml: 1,722; yacc: 1,114; cs: 1,001; sh: 836; lex: 778; java: 588; perl: 489; makefile: 383; tcl: 158; ruby: 55
file content (49 lines) | stat: -rw-r--r-- 871 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
46
47
48
49
#
# Sample MapServer 8.0 Config File
#
CONFIG

  #
  # Environment variables (see https://mapserver.org/environment_variables.html)
  #
  ENV
    #
    # Limit Mapfile Access
    #
    # MS_MAP_NO_PATH "1"
    MS_MAP_PATTERN "^/opt/mapserver" ## required when referencing mapfiles by path

    #
    # Global Log/Debug Setup
    #
    # MS_DEBUGLEVEL "5"
    # MS_ERRORFILE "/opt/mapserver/logs/mapserver.log"

    #
    # Default Map
    #
    # MS_MAPFILE "/opt/mapserver/test/test.map"

    #
    # Other Options
    #
    # MS_ENCRYPTION_KEY
    # MS_USE_GLOBAL_FT_CACHE
    # MS_PDF_CREATION_DATE
    # MS_MAPFILE_PATTERN "\.map$"
    # MS_XMLMAPFILE_XSLT
    # MS_MODE
    # MS_OPENLAYERS_JS_URL
    # MS_OPENLAYERS_CSS_URL
    # MS_TEMPPATH
    # MS_MAX_OPEN_FILES
  END

  #
  # Map aliases
  #
  MAPS
    # TEST_MAPFILE "/opt/mapserver/test/test.map"
  END

END