| 98 | Proxy: configurable file repo directory (#90). |
| 99 | |
| 100 | In `./pom.xml` there is a new property: |
| 101 | |
| 102 | `<dm4.proxy.files.path><dm4.proxy.files.path>` |
| 103 | |
| 104 | This is the file repository's root directory: An absolute path with *no* slash at the end. |
| 105 | |
| 106 | To enable the entire file system specify an *empty string* (instead of "/"), as shown above. This is the default. |
| 107 | |
| 108 | Example: |
| 109 | |
| 110 | `<dm4.proxy.files.path>/home/me/deepamehta/deepamehta-files<dm4.proxy.files.path>` |
| 111 | |
| 112 | See ticket #90. |
| 113 | |
| 114 | **Note:** the file `./pom.xml` exists in the development environment only (when you build from source code). For the end user (when you download the binary distribution) the config file is `./conf/config.properties` |
| 115 | |
| 116 | ---- |
| 117 | |
| 118 | Proxy: for the binary distribution both settings are found in `./conf/config.properties`: |
| 119 | {{{ |
| 120 | dm4.proxy.files.path |
| 121 | dm4.proxy.net.filter |
| 122 | }}} |
| 123 | See ticket #90 |
| 124 | |
| 125 | ---- |
| 126 | |
| 127 | Runtime: DM server runs in background (#46). |
| 128 | |
| 129 | This affects stopping: |
| 130 | |
| 131 | End users: stop DM by Ctrl-C (no `stop 0`anymore).\\ |
| 132 | Server installation: stop DM by killing via PID. |
| 133 | |
| 134 | See ticket #46. |