forked from goatpig/BitcoinArmory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx_example.conf
33 lines (26 loc) · 876 Bytes
/
nginx_example.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
################################################################################
#This is a bare nginx config file to demonstrate ArmoryDB remote functionality.
#It does not respect proper security practices. Use it only for testing purposes.
################################################################################
#user nobody;
worker_processes 1;
events {
worker_connections 1024;
}
http {
keepalive_timeout 0;
server {
listen 80;
server_name localhost;
location / {
root /;
fastcgi_pass 127.0.0.1:9001;
fastcgi_index /;
fastcgi_buffering on;
fastcgi_buffer_size 4k;
fastcgi_buffers 16 4k;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
}
}