Upload files and folders to nginx web server from the browser

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



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
_______________________________________________
CentOS mailing list
CentOS@xxxxxxxxxx
https://lists.centos.org/mailman/listinfo/centos



[Index of Archives]     [CentOS]     [CentOS Announce]     [CentOS Development]     [CentOS ARM Devel]     [CentOS Docs]     [CentOS Virtualization]     [Carrier Grade Linux]     [Linux Media]     [Asterisk]     [DCCP]     [Netdev]     [Xorg]     [Linux USB]


  Powered by Linux