mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-15 19:44:29 +05:00
fix: create mainsail or fluidd nginx config from template
This commit is contained in:
@@ -1,11 +1,11 @@
|
|||||||
# /etc/nginx/sites-available/fluidd
|
# /etc/nginx/sites-available/<<UI>>
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
listen [::]:80;
|
listen [::]:80;
|
||||||
|
|
||||||
access_log /var/log/nginx/fluidd-access.log;
|
access_log /var/log/nginx/<<UI>>-access.log;
|
||||||
error_log /var/log/nginx/fluidd-error.log;
|
error_log /var/log/nginx/<<UI>>-error.log;
|
||||||
|
|
||||||
#disable this section on smaller hardware like a pi zero
|
#disable this section on smaller hardware like a pi zero
|
||||||
gzip on;
|
gzip on;
|
||||||
@@ -17,8 +17,8 @@ server {
|
|||||||
gzip_http_version 1.1;
|
gzip_http_version 1.1;
|
||||||
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/json application/xml;
|
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/json application/xml;
|
||||||
|
|
||||||
#web_path from fluidd static files
|
#web_path from <<UI>> static files
|
||||||
root /home/pi/fluidd;
|
root /home/pi/<<UI>>;
|
||||||
|
|
||||||
index index.html;
|
index index.html;
|
||||||
server_name _;
|
server_name _;
|
||||||
@@ -56,4 +56,4 @@ server {
|
|||||||
location /webcam/ {
|
location /webcam/ {
|
||||||
proxy_pass http://mjpgstreamer/;
|
proxy_pass http://mjpgstreamer/;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
# /etc/nginx/sites-available/mainsail
|
|
||||||
|
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
listen [::]:80;
|
|
||||||
|
|
||||||
access_log /var/log/nginx/mainsail-access.log;
|
|
||||||
error_log /var/log/nginx/mainsail-error.log;
|
|
||||||
|
|
||||||
#disable this section on smaller hardware like a pi zero
|
|
||||||
gzip on;
|
|
||||||
gzip_vary on;
|
|
||||||
gzip_proxied any;
|
|
||||||
gzip_proxied expired no-cache no-store private auth;
|
|
||||||
gzip_comp_level 4;
|
|
||||||
gzip_buffers 16 8k;
|
|
||||||
gzip_http_version 1.1;
|
|
||||||
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/json application/xml;
|
|
||||||
|
|
||||||
#web_path from mainsail static files
|
|
||||||
root /home/pi/mainsail;
|
|
||||||
|
|
||||||
index index.html;
|
|
||||||
server_name _;
|
|
||||||
|
|
||||||
#max upload size for gcodes (0 = no limit)
|
|
||||||
client_max_body_size 0;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
try_files $uri $uri/ /index.html;
|
|
||||||
}
|
|
||||||
|
|
||||||
location = /index.html {
|
|
||||||
add_header Cache-Control "no-store, no-cache, must-revalidate";
|
|
||||||
}
|
|
||||||
|
|
||||||
location /websocket {
|
|
||||||
proxy_pass http://apiserver/websocket;
|
|
||||||
proxy_http_version 1.1;
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection $connection_upgrade;
|
|
||||||
proxy_set_header Host $http_host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_read_timeout 86400;
|
|
||||||
}
|
|
||||||
|
|
||||||
location ~ ^/(printer|api|access|machine|server)/ {
|
|
||||||
proxy_pass http://apiserver$request_uri;
|
|
||||||
proxy_set_header Host $http_host;
|
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
proxy_set_header X-Scheme $scheme;
|
|
||||||
}
|
|
||||||
|
|
||||||
location /webcam/ {
|
|
||||||
proxy_pass http://mjpgstreamer/;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,8 +6,9 @@ set_nginx_cfg(){
|
|||||||
#execute operations
|
#execute operations
|
||||||
status_msg "Creating Nginx configuration for $1 ..."
|
status_msg "Creating Nginx configuration for $1 ..."
|
||||||
#copy content from resources to the respective nginx config file
|
#copy content from resources to the respective nginx config file
|
||||||
cat ${SRCDIR}/kiauh/resources/$1_nginx.cfg > ${SRCDIR}/kiauh/resources/$1
|
cat ${SRCDIR}/kiauh/resources/klipper_webui_nginx.cfg > ${SRCDIR}/kiauh/resources/$1
|
||||||
##edit the nginx config file before moving it
|
##edit the nginx config file before moving it
|
||||||
|
sed -i "s/<<UI>>/$1/g" ${SRCDIR}/kiauh/resources/$1
|
||||||
if [ "$SET_LISTEN_PORT" != "$DEFAULT_PORT" ]; then
|
if [ "$SET_LISTEN_PORT" != "$DEFAULT_PORT" ]; then
|
||||||
status_msg "Configuring port for $1 ..."
|
status_msg "Configuring port for $1 ..."
|
||||||
#set listen port ipv4
|
#set listen port ipv4
|
||||||
|
|||||||
Reference in New Issue
Block a user