docker-test/nginx.conf

32 lines
583 B
Nginx Configuration File
Raw Normal View History

2023-10-16 21:24:46 +02:00
user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
2023-10-16 21:34:26 +02:00
listen 0.0.0.0:12345;
2023-10-16 21:24:46 +02:00
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /.well-known {
alias /usr/share/nginx/html/.well-known;
}
}
2024-01-21 16:57:46 +01:00
server {
listen 12345;
listen [::]:12345;
server_name up.depeuter.dev;
proxy_pass http://192.168.0.11/9301;
}
2023-10-16 21:24:46 +02:00
}