1
0
Fork 0
This commit is contained in:
root 2023-09-25 13:13:04 -04:00
parent fa29897d55
commit 4edc4ccd85
1 changed files with 4 additions and 5 deletions

View File

@ -1,6 +1,10 @@
user nginx;
worker_processes 1;
# Load environment variables
env BACKEND_ADDRESS;
env BACKEND_PORT;
events {
worker_connections 1024;
}
@ -9,10 +13,6 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load environment variables
env BACKEND_ADDRESS;
env BACKEND_PORT;
server {
listen 80;
@ -25,4 +25,3 @@ http {
}
}
}