diff --git a/README.md b/README.md index 44cc234..ba34577 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,12 @@ LOcal MEshtastic Server --- -### TBA \ No newline at end of file +## Hardware + +for now everything will be developed and tested on Raspberry Pi 4B acting as server and as LoRa Modules RAK WisBlock 4631 with RAK 19007 Board as well as Heltec V3 connected via USB. + +## Soft & Firmware + +- Raspberry Pi OS lite (Debian 13 | Trixie) +- RAK Wisblock FW ??? +- Heltec V3 FW ??? \ No newline at end of file diff --git a/nginx/default.conf b/nginx/default.conf deleted file mode 100644 index f34635b..0000000 --- a/nginx/default.conf +++ /dev/null @@ -1,51 +0,0 @@ -server { - listen 8080 ssl http2; - server_name lomes.local; - ssl_certificate /etc/nginx/certs/meshpi.crt; - ssl_certificate_key /etc/nginx/certs/meshpi.key; - location / { - proxy_pass http://192.168.1.3:8080; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - } - - root /usr/share/nginx/html; - index index.html index.htm; - - location / { - try_files $uri $uri/ =404; - } - - error_page 500 502 503 504 /50x.html; - location = /50x.html { - internal; - } - - location ~ /\.ht { - deny all; - } - - gzip on; - gzip_disable "msie6"; - - gzip_vary on; - gzip_proxied any; - gzip_comp_level 6; - gzip_buffers 16 8k; - gzip_http_version 1.1; - gzip_types - text/plain - text/css - text/xml - text/javascript - application/javascript - application/x-javascript - application/json - application/xml - application/xml+rss - font/ttf - font/otf - image/svg+xml; -}