put in new

This commit is contained in:
2025-12-09 22:49:24 +11:00
parent cf7ce41eea
commit fa1e69ee74
3 changed files with 170 additions and 2 deletions
@@ -0,0 +1,48 @@
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
#
# This file will automatically load configuration files provided by other
# applications, such as Drupal or Wordpress. These applications will be made
# available underneath a path with that package name, such as /drupal8.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
server {
listen 80 default_server;
# listen [::]:80 default_server;
server_name familytree.lan;
client_max_body_size 80M;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
# old try_files $uri $uri/ =404;
proxy_pass http://localhost:5010;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location /familytreeui {
#index.html?$args;
try_files $uri $uri/ /index.html /familytreeui/index.html;
root /var/www/familytree;
index index.html;
}
location /familytree/images/ {
root /var/www;
index index.html;
}
}