Skip to content

Commit d7f11a4

Browse files
committed
Merge branch 'release/1.1.7'
2 parents 5038cb9 + 8438bb9 commit d7f11a4

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file.
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
6+
## [1.1.7] - 2023-04-18
7+
## Fixed
8+
- Fix static serving in nginx unit config
9+
510
## [1.1.6]- 2022-12-29
611
### Changed
712
- Change nginx unit version, current version is 1.29.0

docs/deploy/make_nginx_unit_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def main():
5959
},
6060

6161
"action": {
62-
"share": str(STATIC_ROOT.parent)
62+
"share": str(STATIC_ROOT.parent) + "/$uri"
6363
}
6464
},
6565
{
@@ -69,7 +69,7 @@ def main():
6969
]
7070
},
7171
"action": {
72-
"share": str(MEDIA_ROOT.parent)
72+
"share": str(MEDIA_ROOT.parent) + "/$uri"
7373
}
7474
}
7575
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__author__ = "Artem Zenkov"
22
__copyright__ = "Copyright 2021, ISGNeuro"
33
__credits__ = []
4-
__version__ = "1.1.6"
4+
__version__ = "1.1.7"
55
__maintainer__ = "Artem Zenkov"
66
__email__ = "azenkov@isgneuro.com"
77
__status__ = "Production"

0 commit comments

Comments
 (0)