Autoconfig prevent my website redirection to https












1















I have a website in an apache server and a mail server in the same machine. I want the port 80 request redirecting to https 443 port, so I put it in the vhost configuration.



I also want an autoconfig (Mozilla thunderbird use) for my mailserver. However I need to put a config-v1.1.xml accessible on port 80.



The problem is when I request http://example.com it's does not redirect to https://example.com like I want to but it redirects to the autoconfig.



Is there a way to keep autoconfig and have a redirection to https://example.com ?



I have setup a dns record for autoconfig.example.com and call it in vhost file but when I type mysite.com, it still goes in the autoconfig.



Any clues ?
Thanks



Here is the autoconfig.conf



Listen 80
Listen 443
<VirtualHost 178.33.235.19:80>
ServerName autoconfig.example.com
DocumentRoot /var/www/html/autoconfig/
<Directory /var/www/html/autoconfig>
Order allow,deny
allow from all
</Directory>
</VirtualHost>


And the site vhost example.conf



<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</VirtualHost>

<VirtualHost _default_:443>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/example/
DirectoryIndex index.php

ServerName example.com
ServerAlias www.example.com

#SSL Config
SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!MD5
SSLHonorCipherOrder on
SSLCertificateFile /etc/httpd/ssl/STAR_example_com.crt
SSLCertificateKeyFile /etc/httpd/ssl/STAR_example_com.key
SSLCertificateChainFile /etc/httpd/ssl/COMODORSADomainValidationSecureServerCA.crt

<Directory /var/www/html/>
Options FollowSymLinks Indexes MultiViews
AllowOverride All
LogLevel crit
Require all granted
</Directory>

ErrorLog /var/log/apache/example-error_log
CustomLog /var/log/apache/example-access_log common

</VirtualHost>









share|improve this question

























  • Can you show us your whole vhosts file?

    – mx0
    Nov 12 '18 at 16:56











  • I've put it below

    – DrK
    Nov 12 '18 at 17:22











  • Please edit it inside the question.

    – mx0
    Nov 12 '18 at 17:34
















1















I have a website in an apache server and a mail server in the same machine. I want the port 80 request redirecting to https 443 port, so I put it in the vhost configuration.



I also want an autoconfig (Mozilla thunderbird use) for my mailserver. However I need to put a config-v1.1.xml accessible on port 80.



The problem is when I request http://example.com it's does not redirect to https://example.com like I want to but it redirects to the autoconfig.



Is there a way to keep autoconfig and have a redirection to https://example.com ?



I have setup a dns record for autoconfig.example.com and call it in vhost file but when I type mysite.com, it still goes in the autoconfig.



Any clues ?
Thanks



Here is the autoconfig.conf



Listen 80
Listen 443
<VirtualHost 178.33.235.19:80>
ServerName autoconfig.example.com
DocumentRoot /var/www/html/autoconfig/
<Directory /var/www/html/autoconfig>
Order allow,deny
allow from all
</Directory>
</VirtualHost>


And the site vhost example.conf



<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</VirtualHost>

<VirtualHost _default_:443>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/example/
DirectoryIndex index.php

ServerName example.com
ServerAlias www.example.com

#SSL Config
SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!MD5
SSLHonorCipherOrder on
SSLCertificateFile /etc/httpd/ssl/STAR_example_com.crt
SSLCertificateKeyFile /etc/httpd/ssl/STAR_example_com.key
SSLCertificateChainFile /etc/httpd/ssl/COMODORSADomainValidationSecureServerCA.crt

<Directory /var/www/html/>
Options FollowSymLinks Indexes MultiViews
AllowOverride All
LogLevel crit
Require all granted
</Directory>

ErrorLog /var/log/apache/example-error_log
CustomLog /var/log/apache/example-access_log common

</VirtualHost>









share|improve this question

























  • Can you show us your whole vhosts file?

    – mx0
    Nov 12 '18 at 16:56











  • I've put it below

    – DrK
    Nov 12 '18 at 17:22











  • Please edit it inside the question.

    – mx0
    Nov 12 '18 at 17:34














1












1








1








I have a website in an apache server and a mail server in the same machine. I want the port 80 request redirecting to https 443 port, so I put it in the vhost configuration.



I also want an autoconfig (Mozilla thunderbird use) for my mailserver. However I need to put a config-v1.1.xml accessible on port 80.



The problem is when I request http://example.com it's does not redirect to https://example.com like I want to but it redirects to the autoconfig.



Is there a way to keep autoconfig and have a redirection to https://example.com ?



I have setup a dns record for autoconfig.example.com and call it in vhost file but when I type mysite.com, it still goes in the autoconfig.



Any clues ?
Thanks



Here is the autoconfig.conf



Listen 80
Listen 443
<VirtualHost 178.33.235.19:80>
ServerName autoconfig.example.com
DocumentRoot /var/www/html/autoconfig/
<Directory /var/www/html/autoconfig>
Order allow,deny
allow from all
</Directory>
</VirtualHost>


And the site vhost example.conf



<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</VirtualHost>

<VirtualHost _default_:443>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/example/
DirectoryIndex index.php

ServerName example.com
ServerAlias www.example.com

#SSL Config
SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!MD5
SSLHonorCipherOrder on
SSLCertificateFile /etc/httpd/ssl/STAR_example_com.crt
SSLCertificateKeyFile /etc/httpd/ssl/STAR_example_com.key
SSLCertificateChainFile /etc/httpd/ssl/COMODORSADomainValidationSecureServerCA.crt

<Directory /var/www/html/>
Options FollowSymLinks Indexes MultiViews
AllowOverride All
LogLevel crit
Require all granted
</Directory>

ErrorLog /var/log/apache/example-error_log
CustomLog /var/log/apache/example-access_log common

</VirtualHost>









share|improve this question
















I have a website in an apache server and a mail server in the same machine. I want the port 80 request redirecting to https 443 port, so I put it in the vhost configuration.



I also want an autoconfig (Mozilla thunderbird use) for my mailserver. However I need to put a config-v1.1.xml accessible on port 80.



The problem is when I request http://example.com it's does not redirect to https://example.com like I want to but it redirects to the autoconfig.



Is there a way to keep autoconfig and have a redirection to https://example.com ?



I have setup a dns record for autoconfig.example.com and call it in vhost file but when I type mysite.com, it still goes in the autoconfig.



Any clues ?
Thanks



Here is the autoconfig.conf



Listen 80
Listen 443
<VirtualHost 178.33.235.19:80>
ServerName autoconfig.example.com
DocumentRoot /var/www/html/autoconfig/
<Directory /var/www/html/autoconfig>
Order allow,deny
allow from all
</Directory>
</VirtualHost>


And the site vhost example.conf



<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</VirtualHost>

<VirtualHost _default_:443>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/example/
DirectoryIndex index.php

ServerName example.com
ServerAlias www.example.com

#SSL Config
SSLCipherSuite RC4-SHA:AES128-SHA:HIGH:!aNULL:!MD5
SSLHonorCipherOrder on
SSLCertificateFile /etc/httpd/ssl/STAR_example_com.crt
SSLCertificateKeyFile /etc/httpd/ssl/STAR_example_com.key
SSLCertificateChainFile /etc/httpd/ssl/COMODORSADomainValidationSecureServerCA.crt

<Directory /var/www/html/>
Options FollowSymLinks Indexes MultiViews
AllowOverride All
LogLevel crit
Require all granted
</Directory>

ErrorLog /var/log/apache/example-error_log
CustomLog /var/log/apache/example-access_log common

</VirtualHost>






apache






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 7:45









Nic3500

3,32281829




3,32281829










asked Nov 12 '18 at 16:14









DrKDrK

184




184













  • Can you show us your whole vhosts file?

    – mx0
    Nov 12 '18 at 16:56











  • I've put it below

    – DrK
    Nov 12 '18 at 17:22











  • Please edit it inside the question.

    – mx0
    Nov 12 '18 at 17:34



















  • Can you show us your whole vhosts file?

    – mx0
    Nov 12 '18 at 16:56











  • I've put it below

    – DrK
    Nov 12 '18 at 17:22











  • Please edit it inside the question.

    – mx0
    Nov 12 '18 at 17:34

















Can you show us your whole vhosts file?

– mx0
Nov 12 '18 at 16:56





Can you show us your whole vhosts file?

– mx0
Nov 12 '18 at 16:56













I've put it below

– DrK
Nov 12 '18 at 17:22





I've put it below

– DrK
Nov 12 '18 at 17:22













Please edit it inside the question.

– mx0
Nov 12 '18 at 17:34





Please edit it inside the question.

– mx0
Nov 12 '18 at 17:34












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266080%2fautoconfig-prevent-my-website-redirection-to-https%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266080%2fautoconfig-prevent-my-website-redirection-to-https%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Florida Star v. B. J. F.

Error while running script in elastic search , gateway timeout

Adding quotations to stringified JSON object values