mirror of
https://github.com/logos-co/nomos.git
synced 2026-08-27 09:31:15 +00:00
37 lines
760 B
Plaintext
37 lines
760 B
Plaintext
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
# Public
|
|
server {
|
|
listen 13000;
|
|
server_name _;
|
|
|
|
# Static content on https://$EVN_TITLE_STRING.blockchain.logos.co/web/.
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
|
|
# Protected
|
|
server {
|
|
listen 13001;
|
|
server_name _;
|
|
|
|
# Expose all nodes data on https://$EVN_TITLE_STRING.blockchain.logos.co/internal/node-data/.
|
|
location /node-data/ {
|
|
alias /node-data/;
|
|
autoindex on;
|
|
}
|
|
}
|
|
}
|