blob: 12426576808dc717951aa96252add4e41425bbc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# What's new?
## Release 1.1.0 - 2021-02-28
- User directories support:
```
// in virtual host
user-directories = true
user-directory-path = "/home/{user}/public_gemini/"
```
Won't check for the user on the system, it only translates requests based on
the user specific root path.
For example:
```
gemini://host/~myuser/
```
Will use as root:
```
/home/myuser/public_gemini/
```
- Support for per directory flags via `directories`:
```
// directory listing disabled for the virtual host
directory-listing = false
// but it is enabled for ROOT/directory/
directories = [
{ path = "directory/", directory-listing = true }
]
```
- Removed some weight from the distribution bundle
## Release 1.0.1 - 2021-02-26
- Support for JRE 8
## Release 1.0.0 - 2021-02-25
- First public release
|