I’m having an issue uploading files from the linux client. My service URL and file root are set properly. Here is my nginx conf
server {
server_name xxxxxxx;
location / {
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/xxxxxx/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/xxxxxx/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = xxxxxx) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name xxxxx;
listen 80;
return 404; # managed by Certbot
}
I can upload files directly from the web interface, but not the linux client.