Indentation

This commit is contained in:
Bob Mottram 2018-03-28 20:25:58 +01:00
parent 3b1940c1f9
commit 76d5a84586
1 changed files with 6 additions and 6 deletions

View File

@ -1113,13 +1113,13 @@ function install_pleroma {
echo ' limit_conn conn_limit_per_ip 50;'; echo ' limit_conn conn_limit_per_ip 50;';
echo ' limit_req zone=req_limit_per_ip burst=50 nodelay;'; echo ' limit_req zone=req_limit_per_ip burst=50 nodelay;';
echo ''; echo '';
echo " add_header 'Access-Control-Allow-Origin' '*';"; echo " add_header 'Access-Control-Allow-Origin' '*';";
echo ' proxy_http_version 1.1;'; echo ' proxy_http_version 1.1;';
echo " proxy_set_header Upgrade \$http_upgrade;"; echo " proxy_set_header Upgrade \$http_upgrade;";
echo ' proxy_set_header Connection "upgrade";'; echo ' proxy_set_header Connection "upgrade";';
echo " proxy_set_header Host \$http_host;"; echo " proxy_set_header Host \$http_host;";
echo ''; echo '';
echo " proxy_pass http://localhost:$PLEROMA_PORT;"; echo " proxy_pass http://localhost:$PLEROMA_PORT;";
echo ' }'; echo ' }';
echo ''; echo '';
echo ' location /proxy {'; echo ' location /proxy {';