getting merged anyway lol
This commit is contained in:
parent
3f5cb97501
commit
f9671ea198
10 changed files with 68 additions and 20 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
# DO NOT EDIT THIS FILE
|
||||
|
||||
set -e
|
||||
|
||||
ME=$(basename "$0")
|
||||
|
|
|
|||
8
nginx/README.md
Normal file
8
nginx/README.md
Normal 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
|
||||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
location /api/db {
|
||||
add_header Content-Type text/plain;
|
||||
return 200 'db api yay';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue