
- Docker buildx support in CI - Cypress API Testing in CI - Restructured folder layout (insert clean face meme) - Added Swagger documentation and validate API against that (to be completed) - Use common base image for all supported archs, which includes updated nginx with ipv6 support - Updated certbot and changes required for it - Large amount of Hosts names will wrap in UI - Updated packages for frontend - Version bump 2.1.0
30 lines
642 B
Text
30 lines
642 B
Text
# Admin Interface
|
|
server {
|
|
listen 81 default;
|
|
listen [::]:81 default;
|
|
|
|
server_name nginxproxymanager;
|
|
root /app/frontend;
|
|
access_log /dev/null;
|
|
|
|
location /api {
|
|
return 302 /api/;
|
|
}
|
|
|
|
location /api/ {
|
|
add_header X-Served-By $host;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_pass http://127.0.0.1:3000/;
|
|
}
|
|
|
|
location / {
|
|
index index.html;
|
|
if ($request_uri ~ ^/(.*)\.html$) {
|
|
return 302 /$1;
|
|
}
|
|
try_files $uri $uri.html $uri/ /index.html;
|
|
}
|
|
}
|