docker/client/nginx.conf
Artem Anufrij 5f63b7143b move
2023-02-08 12:33:50 +01:00

21 lines
638 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
client_max_body_size 2G;
location /.well-known {
resolver 127.0.0.11;
proxy_set_header Host $http_host;
proxy_pass http://server:31204/well-known;
}
location /api {
resolver 127.0.0.11;
proxy_set_header Host $http_host;
proxy_pass http://server:31204/api;
}
location /users {
resolver 127.0.0.11;
proxy_set_header Host $http_host;
proxy_pass http://server:31204/users;
}
}