Da http a https

Il web in generale. Browser, internet, reti e...
Rispondi
Avatar utente
fabiomaticus
Utente
Utente
Messaggi: 199
Iscritto il: 03/12/2016, 12:55
Link del Forum: www.500forum.it
Località: Taranto
Contatta:

Da http a https

Messaggio da fabiomaticus »

Il gestore del mio hosting mi ha informato che il mio sito ha un certificato di autenticita gratuito pertanto può utilizzare il protocollo https.
Qualcuno lo usa? Come posso fare affinché tutti utilizzino il protocollo?
Avatar utente
alex75
Amministratore
Amministratore
Messaggi: 6268
Iscritto il: 23/08/2012, 23:45
Link del Forum: www.phpbb-italia.it
Località: Palermo

Re: Da http a https

Messaggio da alex75 »

dopo aver installato il certificato ssl sul server, ti basterà impostare dal pca questi parametri:
- Pca/generale/configurazione server/cookie/ cookie sicuri : "Abilitato"
- Pca/generale/configurazione server/server/Impostazioni server URL/Forza impostazioni URL del server: "SI"
Protocollo del server: https
Porta del server: 443

per dirigere tutto il traffico verso https modifica così il file htaccess:
trova:

Codice: Seleziona tutto

RewriteEngine On
RewriteBase /
aggiungi dopo:

Codice: Seleziona tutto

# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Avatar utente
fabiomaticus
Utente
Utente
Messaggi: 199
Iscritto il: 03/12/2016, 12:55
Link del Forum: www.500forum.it
Località: Taranto
Contatta:

Re: Da http a https

Messaggio da fabiomaticus »

Grazie Alex,funziona perfettamente...
Avatar utente
RTI kartname
Utente
Utente
Messaggi: 91
Iscritto il: 08/01/2016, 18:19
Link del Forum: http://racingteamitalia.altervista.org/forum/
Contatta:

Re: Da http a https

Messaggio da RTI kartname »

E' qualche giorno che tengo d'occhio la discussione ( anche su PhpBB Italia ) sto cercando di impostare il forum test in https ma ancora non ci sono riuscito questo il mio htaccess

Codice: Seleziona tutto

<IfModule mod_rewrite.c>
RewriteEngine on

#
# Uncomment the statement below if URL rewriting doesn't
# work properly. If you installed phpBB in a subdirectory
# of your site, properly set the argument for the statement.
# e.g.: if your domain is test.com and you installed phpBB
# in http://www.test.com/phpBB/index.php you have to set
# the statement RewriteBase /phpBB/
#
#RewriteBase /

#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]

#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>

# With Apache 2.4 the "Order, Deny" syntax has been deprecated and moved from
# module mod_authz_host to a new module called mod_access_compat (which may be
# disabled) and a new "Require" syntax has been introduced to mod_authz_host.
# We could just conditionally provide both versions, but unfortunately Apache
# does not explicitly tell us its version if the module mod_version is not
# available. In this case, we check for the availability of module
# mod_authz_core (which should be on 2.4 or higher only) as a best guess.
<IfModule mod_version.c>
	<IfVersion < 2.4>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfVersion>
	<IfVersion >= 2.4>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfModule>
	<IfModule mod_authz_core.c>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfModule>
</IfModule>
Se riuscite a darmi una mano :ciao:
Avatar utente
alex75
Amministratore
Amministratore
Messaggi: 6268
Iscritto il: 23/08/2012, 23:45
Link del Forum: www.phpbb-italia.it
Località: Palermo

Re: Da http a https

Messaggio da alex75 »

forum di test?
Per far funzionare tutto serve un certificato ssl installato sul server.
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Avatar utente
RTI kartname
Utente
Utente
Messaggi: 91
Iscritto il: 08/01/2016, 18:19
Link del Forum: http://racingteamitalia.altervista.org/forum/
Contatta:

Re: Da http a https

Messaggio da RTI kartname »

Ho attivato tramite il pannello di altervista il servizio https ,ho fatto una procedura tramite sms infatti adesso risulta abilitato ,del certificato non si fa cenno da nessuna parte... mi sfugge qualcosa?? :redface:
Avatar utente
alex75
Amministratore
Amministratore
Messaggi: 6268
Iscritto il: 23/08/2012, 23:45
Link del Forum: www.phpbb-italia.it
Località: Palermo

Re: Da http a https

Messaggio da alex75 »

il forum è quello indicato nel tuo profilo?
Se si, allora il certificato è installato (basta verificarlo digitando manualmente l'url con https://www.....) e vanno soltanto applicate le procedure che ho indicato prima.
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Avatar utente
RTI kartname
Utente
Utente
Messaggi: 91
Iscritto il: 08/01/2016, 18:19
Link del Forum: http://racingteamitalia.altervista.org/forum/
Contatta:

Re: Da http a https

Messaggio da RTI kartname »

Quello nel mio profilo è quello ufficiale ,questo è il test http://www.italiaracingteam.altervista. ... e41e977c9b , ho provato ma non capisco in quale punto inserire quelle righe
Avatar utente
alex75
Amministratore
Amministratore
Messaggi: 6268
Iscritto il: 23/08/2012, 23:45
Link del Forum: www.phpbb-italia.it
Località: Palermo

Re: Da http a https

Messaggio da alex75 »

togli il # alla riga

Codice: Seleziona tutto

#RewriteBase /
e subito sotto aggiungi:

Codice: Seleziona tutto

# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Regolamento Forum
Le nostre guide
Se l'assistenza prestata è stata di tuo gradimento potrai contribuire aiutandoci a sostenere le spese affrontate per tenere in vita questo forum >Cliccando sul seguente Link<
Avatar utente
RTI kartname
Utente
Utente
Messaggi: 91
Iscritto il: 08/01/2016, 18:19
Link del Forum: http://racingteamitalia.altervista.org/forum/
Contatta:

Re: Da http a https

Messaggio da RTI kartname »

Codice: Seleziona tutto

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
# Redirect to HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https

RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


#
# Uncomment the statement below if URL rewriting doesn't
# work properly. If you installed phpBB in a subdirectory
# of your site, properly set the argument for the statement.
# e.g.: if your domain is test.com and you installed phpBB
# in http://www.test.com/phpBB/index.php you have to set
# the statement RewriteBase /phpBB/
#


#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#

#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#


#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>

# With Apache 2.4 the "Order, Deny" syntax has been deprecated and moved from
# module mod_authz_host to a new module called mod_access_compat (which may be
# disabled) and a new "Require" syntax has been introduced to mod_authz_host.
# We could just conditionally provide both versions, but unfortunately Apache
# does not explicitly tell us its version if the module mod_version is not
# available. In this case, we check for the availability of module
# mod_authz_core (which should be on 2.4 or higher only) as a best guess.
<IfModule mod_version.c>
	<IfVersion < 2.4>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfVersion>
	<IfVersion >= 2.4>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfModule>
	<IfModule mod_authz_core.c>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfModule>
</IfModule>
Questo è il file htaccess che ho appena caricato dentro la cartella forum dove si trova anche il config.php.
Continuo a non vedere il lucchetto ,in PCA ho impostato come da tue indicazioni ma ancora niente.
Rispondi