From 6833d9f4d2c75aacf7d4808b4c48784686ca7000 Mon Sep 17 00:00:00 2001 From: Jarno Rankinen Date: Mon, 16 Jan 2023 23:55:36 +0200 Subject: [PATCH] NGINX configuration --- enervent-ctrl-python/enervent-ctrl.conf | 59 +++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 enervent-ctrl-python/enervent-ctrl.conf diff --git a/enervent-ctrl-python/enervent-ctrl.conf b/enervent-ctrl-python/enervent-ctrl.conf new file mode 100644 index 0000000..d445b4c --- /dev/null +++ b/enervent-ctrl-python/enervent-ctrl.conf @@ -0,0 +1,59 @@ +upstream enervent-ctrl { + server localhost:8888; +} + +server { + listen 80 default_server; + listen [::]:80 default_server; + + # SSL configuration + # + # listen 443 ssl default_server; + # listen [::]:443 ssl default_server; + # + # Note: You should disable gzip for SSL traffic. + # See: https://bugs.debian.org/773332 + # + # Read up on ssl_ciphers to ensure a secure configuration. + # See: https://bugs.debian.org/765782 + # + # Self signed certs generated by the ssl-cert package + # Don't use them in a production server! + # + # include snippets/snakeoil.conf; + + root /home/jarno/enervent-ctrl/enervent-ctrl-python/html; + + # Add index.php to the list if you are using PHP + index index.html index.htm index.nginx-debian.html; + + server_name _; + + location / { + # First attempt to serve request as file, then + # as directory, then fall back to displaying a 404. + try_files $uri $uri/ =404; + } + + location /api { + proxy_pass http://enervent-ctrl; + } + + # pass PHP scripts to FastCGI server + # + #location ~ \.php$ { + # include snippets/fastcgi-php.conf; + # + # # With php-fpm (or other unix sockets): + # fastcgi_pass unix:/run/php/php7.4-fpm.sock; + # # With php-cgi (or other tcp sockets): + # fastcgi_pass 127.0.0.1:9000; + #} + + # deny access to .htaccess files, if Apache's document root + # concurs with nginx's one + # + #location ~ /\.ht { + # deny all; + #} +}