Files
smoa/docs/infrastructure/nginx-smoa.conf.example
defiQUG 5a8c26cf5d Backend, sync, infra, docs: ETag, API versioning, k8s, web scaffold, Android 16, domain stubs
- Backend: ShallowEtagHeaderFilter for /api/v1/*, API-VERSIONING.md, README (tenant, CORS, Flyway, ETag)
- k8s: backend-deployment.yaml (Deployment, Service, Secret/ConfigMap)
- Web: scaffold with directory pull, 304 handling, touch-friendly UI
- Android 16: ANDROID-16-TARGET.md; BuildConfig STUN/signaling, SMOAApplication configures InfrastructureManager
- Domain: CertificateManager revocation stub, ReportService signReports, ZeroTrust/ThreatDetection minimal docs
- TODO.md and IMPLEMENTATION_STATUS.md updated; communications README for endpoint config

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-10 20:37:01 -08:00

35 lines
992 B
Plaintext

# Example Nginx config for SMOA backend (reverse proxy + TLS).
# Place in /etc/nginx/sites-available/ and symlink to sites-enabled.
# Replace smoa.example.com and paths with your values.
upstream smoa_backend {
server 127.0.0.1:8080;
keepalive 32;
}
server {
listen 80;
server_name smoa.example.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
server_name smoa.example.com;
ssl_certificate /etc/ssl/certs/smoa.example.com.crt;
ssl_certificate_key /etc/ssl/private/smoa.example.com.key;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
proxy_pass http://smoa_backend;
proxy_http_version 1.1;
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;
proxy_set_header Connection "";
}
}