This commit is contained in:
Fr4nz D13trich 2025-10-06 07:46:54 +02:00
parent 21101205e3
commit 20e8afaab3
2 changed files with 9 additions and 52 deletions

View file

@ -4,4 +4,12 @@ LOcal MEshtastic Server
---
### TBA
## 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 ???

View file

@ -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;
}