You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!--
|
|
~ This file is part of Libresonic.
|
|
~
|
|
~ Libresonic is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ Libresonic is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU General Public License
|
|
~ along with Libresonic. If not, see <http://www.gnu.org/licenses/>.
|
|
~
|
|
~ Copyright 2014 (C) Sindre Mehus
|
|
-->
|
|
|
|
<web-app id="libresonic" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
|
|
|
|
<!--Enable compression for XML, JSON and JSONP in the REST API-->
|
|
<filter>
|
|
<filter-name>GzipFilter</filter-name>
|
|
<filter-class>org.mortbay.servlet.GzipFilter</filter-class>
|
|
<init-param>
|
|
<param-name>mimeTypes</param-name>
|
|
<param-value>text/xml,application/json,text/javascript</param-value>
|
|
</init-param>
|
|
</filter>
|
|
<filter-mapping>
|
|
<filter-name>GzipFilter</filter-name>
|
|
<url-pattern>/rest/*</url-pattern>
|
|
</filter-mapping>
|
|
|
|
</web-app> |