add convert app to example nginx and update changelog
parent
f7f2146fa5
commit
0978074c74
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -4,6 +4,13 @@
|
|||
* server
|
||||
* `installMethod: 'unspecified'` in the default config to distinguish docker installs
|
||||
* `instancePurpose` on admin panel
|
||||
* add support for archiving pin lists (instead of deleting them)
|
||||
* blocks
|
||||
* archive blocks instead of deleting them outright
|
||||
* implement as storage API
|
||||
* validate blocks in worker
|
||||
* don't include adminEmail in telemetry unless we have consentToContact
|
||||
* don't include instancePurpose in telemetry if it is "noanswer"
|
||||
* display warnings when remote resources are blocked
|
||||
* in code preview
|
||||
* restrict style tags to a scope when rendering them in markdown preview by compiling their content as scoped less
|
||||
|
@ -15,6 +22,19 @@
|
|||
* form templates
|
||||
* guard against a type error in `getAccessKeys`
|
||||
* guard against invalid or malicious input when constructing media-tags for embedding in markdown
|
||||
* Japanese translation
|
||||
* conversions
|
||||
* convert app
|
||||
* some basic office formats
|
||||
* rich text => markdown
|
||||
* handle some pecularities with headings and ids
|
||||
* forms => .csv
|
||||
* trello import with some loss
|
||||
* fix rendering issue for legacy markdown media tag syntax
|
||||
* guard against domExceptions
|
||||
* catch errors thrown by the diff applier
|
||||
* don't bother returning the hash of a pin list to the client, since they don't use it
|
||||
|
||||
|
||||
# 4.7.0
|
||||
|
||||
|
|
|
@ -214,7 +214,7 @@ server {
|
|||
# The nodejs server has some built-in forwarding rules to prevent
|
||||
# URLs like /pad from resulting in a 404. This simply adds a trailing slash
|
||||
# to a variety of applications.
|
||||
location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media|profile|contacts|todo|filepicker|debug|kanban|sheet|support|admin|notifications|teams|calendar|presentation|doc|form|report)$ {
|
||||
location ~ ^/(register|login|settings|user|pad|drive|poll|slide|code|whiteboard|file|media|profile|contacts|todo|filepicker|debug|kanban|sheet|support|admin|notifications|teams|calendar|presentation|doc|form|report|convert)$ {
|
||||
rewrite ^(.*)$ $1/ redirect;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue