rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Win_7

Pages: 1
1
router & port problems / nginx 413 Request Entity Too Large
« on: September 08, 2023, 07:23:30 PM »
Hello im using a template i found of nginx that passes traffic to hfs server and adds ssl cert but seems like the max data that can be in a request or post is extremely limited leading to the https version of my site being almost completely unusable how can i fix this?

config:

#user  nobody;
worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;


    # HTTPS server
    #
    server {
        listen       443 ssl;
        server_name  localhost;

        ssl_certificate      cert.pem;
        ssl_certificate_key  cert.key;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;

        location / {
         proxy_pass http://127.0.0.1:80;
         proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
        }
    }

}

2
Hello im trying to add ssl cert by proxying connections thru nginx and its working apart from hfs homepages they just dont generate and show the nginx 502 bad gateway but any of my custom html pages do load & work + has ssl but interestingly the hfs not found page does display is there any way to fix this?

heres my nginx config:
   location / {
      proxy_pass http://192.168.0.100:80;
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

      proxy_set_header X-Forwarded-Proto $scheme;
      proxy_buffering off;
      proxy_redirect off;
   }


btw what does "Return to th is topic" do?

3
HFS ~ HTTP File Server / help
« on: March 23, 2023, 09:52:12 AM »
hos can i do php in hfs?

4
HTML & templates / question
« on: March 11, 2023, 09:37:51 PM »
how can i allow uploads of html files on my website?

5
HTML & templates / question
« on: March 11, 2023, 02:31:33 PM »
is it possible to edit the baked in html or icon files of hfs?

6
router & port problems / port forwarding and hosting
« on: March 11, 2023, 02:10:51 PM »
is it possible to host a hfs server with an ipv6 public ip adress as a friend of mine wants an hfs server but only has ipv6 and is it possible to port forward on a mobile network

Pages: 1