mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Add initial example config for nginx
This commit is contained in:
parent
b6cf8390ad
commit
00735c402b
37
config_examples/nginx.conf.example
Normal file
37
config_examples/nginx.conf.example
Normal file
@ -0,0 +1,37 @@
|
||||
# Config based on https://gitlab.com/lewishill211/crafty-controller-https
|
||||
# Edits for 4.0 compatibility by pretzelDewey - https://gitlab.com/amcmanu3
|
||||
|
||||
upstream crafty {
|
||||
server "<DOMAIN>";
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80 default_server;
|
||||
rewrite ^(.*) https://$host$1 permanent;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
server_name <DOMAIN>;
|
||||
ssl_certificate <CERIFICATE_LOCATION>;
|
||||
ssl_certificate_key <KEYFILE_LOCATION>;
|
||||
location / {
|
||||
proxy_http_version 1.1;
|
||||
proxy_redirect off;
|
||||
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $http_host
|
||||
|
||||
proxy_pass https://localhost:8443;
|
||||
|
||||
proxy_buffering off;
|
||||
client_max_body_size 0;
|
||||
proxy_connect_timeout 3600s;
|
||||
proxy_read_timeout 3600s;
|
||||
proxy_send_timeout 3600s;
|
||||
send_timeout 3600s;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user