Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: SSL web application access [SOLVED] (Read 1163 times) previous topic - next topic

SSL web application access [SOLVED]

Hi,  The question is, can i use a certificate to access the PHP index, need i note in general settings with https:// or require some aditional configuration.

Thank you in advance

Re: SSL web application access

Reply #1
@ocalle‍ yes you can, if you have an SSL certificate installed on your server. After generating your app, locate the config.php in the project root folder, delete, comment or replace the line  👇
Code: [Select]
define('SITE_ADDR' , $site_addr);

with this 👇
Code: [Select]
define('SITE_ADDR' , "https://example.com");

replacing https://example.com with your own site address.

 

Re: SSL web application access [SOLVED]

Reply #2
Many thanks, i put the brackets with SOLVED to help other people that need