Skip to content

Commit

Permalink
Config changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Sep 12, 2013
1 parent 35e5275 commit da5ae1f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<properties>
<appengine.app.version>chat</appengine.app.version>
<appengine.target.version>1.8.1</appengine.target.version>
<appengine.target.version>1.8.4</appengine.target.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/WEB-INF/appengine-web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
</manual-scaling>

<sessions-enabled>true</sessions-enabled>
<precompilation-enabled>false</precompilation-enabled>
<system-properties>
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
</system-properties>
Expand Down
8 changes: 8 additions & 0 deletions src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
</auth-constraint>
</security-constraint>
<servlet>
<servlet-name>startup</servlet-name>
<servlet-class>com.google.appengine.demos.websocketchat.servlet.StartupServlet</servlet-class>
Expand Down

0 comments on commit da5ae1f

Please sign in to comment.