docker-test/nginx.conf
Tibo De Peuter 173815310a
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 56s
[TEST] Add up.depeuter.dev
2024-01-21 16:57:46 +01:00

31 lines
583 B
Nginx Configuration File

user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 0.0.0.0:12345;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /.well-known {
alias /usr/share/nginx/html/.well-known;
}
}
server {
listen 12345;
listen [::]:12345;
server_name up.depeuter.dev;
proxy_pass http://192.168.0.11/9301;
}
}