File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file.
22
33The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
44and 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
Original file line number Diff line number Diff 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 ]
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments