Recent content by httpd_config.conf

  1. H

    my APP load fine in localhost:8080, how I can send this as response to ANY request to HTTPS://hn.mydomain.com ?

    thanks master, I do this 2 actions: create file .htacces .htaccess INTO dir [/home/hn.mydomain.com/public_html] into this .htaccess file, I put yours 3 llines (changing ONLY: hm.mydomain.com by "my REAL hostname" I restar LSWS, then nothing happen, by this, I reboot the whole server and then...
  2. H

    my APP load fine in localhost:8080, how I can send this as response to ANY request to HTTPS://hn.mydomain.com ?

    thanks by your help, I add my APP: and I am sorry but really me not understand how to send this URL as response for ANY request to my URL: https://hm.mydomain.com surely the tutorial say how do it but me not understand how open https://hm.mydomain.com and then display my http://localhost:8080...
  3. H

    my APP load fine in localhost:8080, how I can send this as response to ANY request to HTTPS://hn.mydomain.com ?

    hello. using DOCKER I install [APP] and this run fine in localhost:8080 but when ANY CLIENT open HTTPS://hn.mydomain.com:8080 this load "perfect", but the browser launch WARNNING about certificate. Then my best solution is send ANY REQUEST to HTTPS://hn.mydomain.com with response from...
  4. H

    how to set SSL over PORT X ?

    thanks, you can see we not want CHANGE default port SSL. We only need LOAD por1 and por2 WITH SSL. how we can do it?
  5. H

    how to set SSL over PORT X ?

    master as we say in our message #3, SSL yes load when we put: listener MYAPP { map SLD.TLD SLD.TLD address *:8443 secure 1 keyFile /etc/letsencrypt/live/hostname.SLD.TLD/privkey.pem certFile...
  6. H

    how to set SSL over PORT X ?

    note: when we remove the linemap SLD.TLD SLD.TLDthenhttps://sld.tld:portload 404 not found page
  7. H

    how to set SSL over PORT X ?

    thanks master by your help, finally from the file/usr/local/lsws/conf/httpd_config.conf following yours instructions we take this fragment of code:listener SSL { address *:443 secure 1 keyFile...
  8. H

    how to set SSL over PORT X ?

    hello, we ADD this block of lines into the file /usr/local/lsws/conf/httpd_config.conf listener https { address *:3451 secure 1 keyFile /etc/letsencrypt/live/hostname.midomain.com/privkey.pem certFile...
  9. H

    put [address *:443 *:port] into [httpd_config.conf] is correct for ADD SSL to X port ?

    thanks, in your code we only see port 443 please: how we can add port1, port2, etc...
  10. H

    how to set SSL over PORT X ?

    hello, we put the line address *:443 *:port1 *:port2 into the file /usr/local/lsws/conf/httpd_config.conf but yet the browsers lounches alert when we try open https://web:port1 or https://web:port2 how we can fix? what file we need edit? thanks
  11. H

    put [address *:443 *:port] into [httpd_config.conf] is correct for ADD SSL to X port ?

    hello, we need ADD SSL to some ports. how we can do it? we edit the file /usr/local/lsws/conf/httpd_config.conf and we change the lineaddress *:443by the lineaddress *:443 *:P1 *:P2we restart all but website:p1 and website:p2 yet NOT LOAD with SSL. What we can...
Top