Upload files and folders to nginx web server from the browser

K
  • 8 Aug '23
Hi,

Is there a way to upload files to nginx web server
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20230808/144248aa/attachment.htm>
A
  • 9 Aug '23
Hi.

On 2023-08-08 (Di.) 18:20, Kaushal Shriyan wrote:
> Hi,
> 
> Is there a way to upload files to nginx web server 
> https://software.mydomain.com <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)

According to the page is there a Upload module for nginx.
https://www.nginx.com/resources/wiki/modules/upload/
https://github.com/fdintino/nginx-upload-module

If you don't want to rebuild nginx can you try to use any other upload 
mechanism from the many solution out there based on several programming 
languages.

https://html.duckduckgo.com/html?q=http%20upload%20server

One possible solution is this go solution.
https://github.com/git001/caddyv2-upload

Hope that helps
Regards
Alex

> # 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
> 
> _______________________________________________
> nginx mailing list
> nginx at nginx.org
> https://mailman.nginx.org/mailman/listinfo/nginx