-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexampleNginx.conf
45 lines (34 loc) · 1.51 KB
/
exampleNginx.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
34
35
36
37
38
39
40
41
42
43
44
45
server {
server_tokens off;
listen 443 ssl http2;
ssl_certificate /path/to/your/cacert.pem; # path to your cacert.pem
ssl_certificate_key /path/to/your/privkey.pem; # path to your privkey.pem
server_name yourCrehdatinWebsite.com;
root /path/to/your/webroot;
client_max_body_size 10m; #max upload size should be large enough for images
location /static {
#this will automatically get files out of the /static folder
}
location / {
#everything else should be passed with fastcgi to the Crehdatin process
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;
fastcgi_param QUERY_STRING $document_uri;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_pass_request_body on;
fastcgi_pass 127.0.0.1:8222;#ip to the running Crehdatin process
}
}