Created
June 1, 2013 14:43
-
-
Save oinume/5690644 to your computer and use it in GitHub Desktop.
Jettyでシンボリックリンクを使えるようにする設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <servlet> | |
| <servlet-name>jetty</servlet-name> | |
| <servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class> | |
| <init-param> | |
| <param-name>aliases</param-name> | |
| <param-value>true</param-value> | |
| </init-param> | |
| <load-on-startup>0</load-on-startup> | |
| </servlet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment