getting merged anyway lol

This commit is contained in:
maix0 2025-07-19 15:29:06 +02:00 committed by Maieul BOYER
parent 3f5cb97501
commit f9671ea198
10 changed files with 68 additions and 20 deletions

View file

@ -1,6 +1,7 @@
#!/bin/sh
# if $NGINX_RESOLVERS set to local, set it to the local resolvers from /etc/resolv.conf and export it
# DO NOT EDIT THIS FILE
set -eu

View file

@ -1,5 +1,8 @@
#!/bin/sh
# DO NOT EDIT THIS FILE
set -e
ME=$(basename "$0")

8
nginx/README.md Normal file
View file

@ -0,0 +1,8 @@
# Nginx Configuration
You want to have a new microservice ?
Edit/add a file in `conf/locations/`
take example on `conf/locations/icons.conf` on how to make a reverse proxy and on how to serve static files
# Good Luck Have Fun

View file

@ -1,3 +1,5 @@
# please make sure you want to edit this file...
# this allows the redirection of `http://domain/URL` to `https://domain/URL`
server {
charset UTF-8;

View file

@ -1,4 +0,0 @@
location /api/db {
add_header Content-Type text/plain;
return 200 'db api yay';
}