Kaushal Shriyan
2023-Aug-09 01:30 UTC
[CentOS] Upload files and folders to nginx web server from the browser
Hi, Is there a way to upload files to nginx webserver https://software.mydomain.com from the browser ? I have the below nginx config file. I am running nginx version: nginx/1.24.0 on CentOS Linux release 7.9.2009 (Core) # nginx -v nginx version: nginx/1.24.0 # cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) # *cat /etc/nginx/conf.d/default.conf*> server { > listen 80 default_server; > server_name software.mydomain.com; > return 301 https://$server_name$request_uri; > } > > server { > listen 443 ssl; > server_name software.mydomain.com; > ssl_protocols TLSv1.3 TLSv1.2; > ssl_stapling off; > ssl_stapling_verify on; > ssl_certificate /etc/letsencrypt/live/ > software.mydomain.com/fullchain.pem; > ssl_certificate_key /etc/letsencrypt/live/ > software.mydomain.com/privkey.pem; > ssl_ciphers > ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; > root /var/www/html/nbapibankingsoftwarebinaries; > auth_basic "Restricted Access"; > auth_basic_user_file /etc/nginx/.htpasswd; > autoindex on; > ssl_prefer_server_ciphers on; > ssl_dhparam /etc/ssl/certs/software.mydomain.com/dhparam.pem; > add_header Strict-Transport-Security: max-age=63072000; > > location /var/www/html/cbapibankingsoftwarebinaries { > try_files $uri $uri/ =404; > } > } >Please guide me. Thanks in Advance. Best Regards, Kaushal
Richard
2023-Aug-09 07:42 UTC
[CentOS] Upload files and folders to nginx web server from the browser
> Date: Wednesday, August 09, 2023 07:00:38 +0530 > From: Kaushal Shriyan <kaushalshriyan at gmail.com> > > Is there a way to upload files to nginx webserver > https://software.mydomain.com from the browser ? I have the below > nginx config file. I am running nginx version: nginx/1.24.0 on > CentOS Linux release 7.9.2009 (Core) >Using your search engine of choice, try looking for something like: nginx file upload to server using browser I believe that will provide pointers that should get you started.