123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?config.xml version="1.0" encoding="UTF-8"?>
- <!--
- Service level configuration
- -->
- <serverConfiguration>
- <global>
- <!--
- Defines the logging level. Common options are SEVERE,
- WARNING, INFO, CONFIG, FINER, FINEST, in order of
- Increasing statements logged.
- -->
- <loggingLevel>FINE</loggingLevel>
- <loggingToFile value = "false" />
- <JaiMemoryCapacity value = "209715200" />
- <JaiMemoryThreshold value = "0.75" />
- <JaiTileThreads value = "7" />
- <JaiTilePriority value = "5" />
- <JaiRecycling value = "true" />
- <ImageIOCache value = "false" />
- <JaiJPEGNative value = "true" />
- <JaiPNGNative value = "true" />
- <!--
- Sets the max number of Features returned by GetFeature
- -->
- <maxFeatures value = "10000" />
- <!--
- Whether newlines and indents should be returned in
- XML responses. Default is false
- -->
- <verbose value = "true" />
- <!--
- Whether the Service Exceptions returned to clients should contain
- full java stack traces (useful for debugging).
- -->
- <verboseExceptions value = "false" />
- <!--
- Sets the max number of decimal places past the zero returned in
- a GetFeature response. Default is 4
- -->
- <numDecimals value = "8" />
- <!--
- Sets the global character set. This could use some more testing
- from international users, but what it does is sets the encoding
- globally for all postgis database connections (the charset tag
- in FeatureTypeConfig), as well as specifying the encoding in the return
- config.xml header and mime type. The default is UTF-8. Also be warned
- that GeoServer does not check if the CharSet is valid before
- attempting to use it, so it will fail miserably if a bad charset
- is used.
- -->
- <charSet value = "UTF-8" />
- <!--
- Defines the user name of the administrator for log in
- to the web based administration tool.
- -->
- <adminUserName>admin</adminUserName>
- <!--
- Defines the password of the administrator for log in
- to the web based administration tool.
- -->
- <adminPassword>geoserver</adminPassword>
- <updateSequence>1</updateSequence>
- </global>
- <services>
- <service type = "WCS" enabled = "true" >
- <!--
- ServiceDTO elements, needed for the capabilities document
- Title and OnlineResource are the two required
- -->
- <name>My GeoServer WCS</name>
- <title>My GeoServer WCS</title>
- <abstract>
- This is a description of your Web Coverage Server.
- </abstract>
- <metadataLink about = "http://geoserver.sourceforge.net/html/index.php" metadataType = "other" type = "undef" >
- NONE
- </metadataLink><keywords>
- <keyword>WCS</keyword>
- <keyword>WMS</keyword>
- <keyword>GEOSERVER</keyword>
- </keywords>
- <onlineResource>http://geoserver.org</onlineResource>
- <fees>NONE</fees>
- <accessConstraints>NONE</accessConstraints>
- <srsXmlStyle value = "false" />
- <maintainer>http://geoserver.org/comm</maintainer>
- </service>
- <service type = "WFS" enabled = "true" >
- <!--
- ServiceDTO elements, needed for the capabilities document
- Title and OnlineResource are the two required
- -->
- <name>TOPP GeoServer</name>
- <title>The Open Planning Project Basemap Server</title>
- <abstract>This is a test server. It contains some basemap data
- from New York City.</abstract>
- <metadataLink >null</metadataLink><keywords>
- <keyword>WFS</keyword>
- <keyword>TEST</keyword>
- <keyword>NY</keyword>
- <keyword>New York</keyword>
- </keywords>
- <onlineResource>http://geoserver.org</onlineResource>
- <fees>NONE</fees>
- <accessConstraints>NONE</accessConstraints>
- <srsXmlStyle value = "true" />
- <serviceLevel value = "31" />
- <citeConformanceHacks>true</citeConformanceHacks>
- <maintainer>http://geoserver.org/comm</maintainer>
- </service>
- <service type = "WMS" enabled = "true" >
- <!--
- ServiceDTO elements, needed for the capabilities document
- Title and OnlineResource are the two required
- -->
- <name>FreeWMS</name>
- <title>The Open Planning Project Basemap Server</title>
- <abstract>This is a test server. It contains some basemap data
- from New York City.</abstract>
- <metadataLink >null</metadataLink><keywords>
- <keyword>WMS</keyword>
- <keyword>TEST</keyword>
- <keyword>NY</keyword>
- <keyword>New York</keyword>
- </keywords>
- <onlineResource>http://geoserver.org</onlineResource>
- <fees>NONE</fees>
- <accessConstraints>NONE</accessConstraints>
- <srsXmlStyle value = "false" />
- <maintainer>http://geoserver.org/comm</maintainer>
- <svgAntiAlias>true</svgAntiAlias>
- </service>
- </services>
- </serverConfiguration>
|