mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 04:16:34 +03:00
1bbb0fe679
When PORT is 8080 and dokcer restart, nginx will listen 80808080
12 lines
422 B
Bash
12 lines
422 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
sed -i -e "s|%PAGE_TITLE%|$PAGE_TITLE|g" /usr/share/nginx/html/index.html
|
|
sed -i -e "s|%PAGE_FAVICON%|$PAGE_FAVICON|g" /usr/share/nginx/html/index.html
|
|
sed -i -e "s|%SPEC_URL%|$SPEC_URL|g" /usr/share/nginx/html/index.html
|
|
sed -i -e "s|%REDOC_OPTIONS%|${REDOC_OPTIONS}|g" /usr/share/nginx/html/index.html
|
|
sed -i -e "s|\(listen\s*\) [0-9]*|\1 ${PORT}|g" /etc/nginx/nginx.conf
|
|
|
|
exec nginx -g 'daemon off;'
|