mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
12 lines
183 B
Nginx Configuration File
12 lines
183 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name download.erigon.ch;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|