SSL Only site (disable HTTP access)

Discussion in 'General' started by letic, Jul 13, 2006.

  1. letic

    letic New Member

    Hi there,

    I was wondering is there was a way to modify ISPConfig site configuration to allow only SSL access.

    I configured SSL with no problem but I would like to disable access on the port 80 for this particular site.

    At the moment I use iptables rules to do this but I just wanted to know if there was an easy way to do it in ISPConfig

    Thanks in advance
    LeTic
     
  2. djtremors

    djtremors New Member

    No 100% solution but you can setup a small php header to redirect them on immediate browse.. ie.

    PHP:
    <?php

    header
    ("Location: https://yoursite.com");

    ?>
     
  3. falko

    falko Super Moderator Howtoforge Staff

  4. letic

    letic New Member

    Sorry lads I didn't see your answers before but the subscribtion option in the forum are set to not subscribe to the post you start or answer by default.

    Thanks both solution you gave are working fine but I went for Falko's

    I knew about the Rewrite Engine but only used it in the .htaccess to change destination I didn't know you could use it with the port and so have the redirect, shame on me :(

    Thanks Falko for the answer and if it can be of any help to somenone else I added these rules :
    Code:
    RewriteEngine on
    RewriteCond %{SERVER_PORT} =80
    RewriteRule ^(.*) https://%{SERVER_NAME}%{REQUEST_URI}
    To the Apache directives in ISP config.

    Thanks for the answers :)
     

Share This Page