kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
20 results tagged apache  ✕
How to redirect HTTP to HTTPS Using .htaccess https://www.freecodecamp.org/news/how-to-redirect-http-to-https-using-htaccess/
17/06/2019 13:37:06

Toujours bon d'avoir ça sous le coude.

https redirection htaccess apache
Apache HTTPD balancer-manager control script · GitHub https://gist.github.com/SeonghoonKim/5385982
17/10/2018 10:29:10

Un exemple de script pour piloter Apache balancer manager sans passer par l'interface web.

apache loadbalancer
Bug: Setting url: to https in config.js causes a redirect loop · Issue #2796 · TryGhost/Ghost https://github.com/TryGhost/Ghost/issues/2796#issuecomment-350851420
29/05/2018 22:19:49

Exemple de config Apache en mode proxy pour servir un blog Ghost en HTTPS.

<VirtualHost *:443>
    RequestHeader set X-Forwarded-Proto "https"

    ServerName ghost.example.com:443

    SSLEngine on
    SSLProtocol all -SSLv2
    SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5:!SEED:!IDEA
    SSLCertificateFile /home/user/.ssl/certificate.pem
    SSLCertificateKeyFile /home/user/.ssl/private_key.key

    <Location "/">
        ProxyPreserveHost On
        ProxyPass http://127.0.0.1:2368/
        ProxyPassReverse http://127.0.0.1:2368/
    </Location>
</VirtualHost>
https ghost apache proxy
How to use Log Analytics tool - Analytics Platform - Matomo https://matomo.org/docs/log-analytics-tool-how-to/
14/03/2018 21:10:04

Importer vos logs Apache dans Matomo (Piwik).

analytics log apache
Monitorer Apache - Documentation technique : Debian https://technique.arscenic.org/monitoring/munin/monitoring-specifiques/article/monitorer-apache
01/03/2018 22:05:59

Monitorer Apache avec Munin.

monitor apache munin serveur
Monitorer son serveur Linux avec Munin | Angristan https://angristan.fr/monitorer-serveur-linux-munin/
13/02/2018 13:08:01

Sous le coude.

monitor serveur apache munin
Cours ASRALL — Serveurs web https://luc.frama.io/cours-asrall/serveurs_web/index.html
29/09/2017 13:05:54

Des cours sur les serveurs web (type Apache, Nginx) par Luc Didry.

Via https://blog.genma.fr/?Cours-sur-les-serveurs-web-par-Luc-Didry

serveur administration web apache nginx tuto
Apache Configure CORS Headers for Whitelist Domains http://blog.blakesimpson.co.uk/read/64-apache-configure-cors-headers-for-whitelist-domains
28/08/2017 15:14:53

Une config Apache pour améliorer un peu le fonctionnement du header Access-Control-Allow-Origin utilisé pour faire des appels AJAX cross-origin. Comme celui-ci n'accepte qu'une wildcard ou un domaine précis, l'idée et de laisser Apache gérer la whitelist.

crossorigin apache ajax
How to Install Ghost Blog Software with Apache and SSL on Ubuntu 16.04 https://www.howtoforge.com/tutorial/how-to-install-ghost-blog-on-ubuntu/
28/07/2017 14:44:27

Sous le coude. Comme le Ghost CLI utilise Nginx par défaut, vous pouvez zapper la partie web server et configurer votre Apache à la place.

ghost nginx apache
htaccess - Ultimate Apache .htaccess file Guide http://www.askapache.com/htaccess/
20/03/2017 10:37:08
tuto apache htaccess
Installer et activer HTTP2 sur Apache2 - Korben https://korben.info/installter-activer-http2-apache2.html
15/03/2017 11:53:19

Ça peut servir.

http http2 apache
URL Rewriting for Beginners - Web Development in Brighton - Added Bytes https://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/
01/08/2016 11:24:33

Toujours utile d'avoir ça sous le coude.

urlrewriting url réécriture apache htaccess
mod rewrite - Redirect, Change URLs or Redirect HTTP to HTTPS in Apache - Everything You Ever Wanted to Know About Mod_Rewrite Rules but Were Afraid to Ask - Server Fault https://serverfault.com/questions/214512/redirect-change-urls-or-redirect-http-to-https-in-apache-everything-you-ever
05/07/2016 09:50:41

Une cheatsheet sur le RewriteRule de Apache.

apache htaccess réécriture configuration
apache - wamp server does not start: Windows 7, 64Bit - Stack Overflow https://stackoverflow.com/questions/12303216/wamp-server-does-not-start-windows-7-64bit
30/06/2016 18:54:21

Astuce pratique pour débuguer apache quand on l'utilise via WAMP sous Windows.

Ouvrir une invite de commande en admin puis taper :

cd c:/wamp/bin/apache/ApacheX.X.X/bin
httpd.exe -e debug
wamp debug apache windows
Comment configurer les Virtual hosts avec Wamp | Freelance Magento Cértifié http://www.nicolas-verhoye.com/comment-configurer-virtual-hosts-wamp.html
01/06/2016 13:28:10

Configurer les VHOSTS avec Wamp (pour accéder à son site avec par exemple monsite.local plutôt que localhost/monsite).

Je me recopie les étapes importantes :

Dans wamp/bin/apache/apache2.2.8/conf/extra/httpd-vhosts.conf ajouter :

<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "C:/wamp/www/monblog/"
ServerName monblog.local
ServerAlias monblog.local
ErrorLog "logs/monblog.local-error.log"
CustomLog "logs/monblog.local-access.log" common
</VirtualHost>

Dans wamp/bin/apache/apache2.2.8/conf/httpd.conf décommenter :

#Include conf/extra/httpd-vhosts.conf

Dans C:/WINDOWS/system32/drivers/etc/hosts ajouter :

127.0.0.1       monblog.local

Et redémarrer WAMP.

wamp windows apache mysql php vhost
Page de maintenance rapide [sebsauvage] http://sebsauvage.net/wiki/doku.php?id=en_vrac#page_de_maintenance_rapide
27/01/2016 13:29:12

Mettre en place un système de maintenance rapidement. Il suffit de renommer un fichier pour activer ou désactiver la maintenance.

maintenance apache htaccess fichier
phanan/htaccess · GitHub https://github.com/phanan/htaccess
09/02/2015 12:38:55

Plein de snippets pour les fichiers de configuration Apache .htaccess
A garder sous le coude.

htaccess apache snippet
Conseils sur la sécurité - Serveur Apache HTTP Version 2.4 http://httpd.apache.org/docs/current/misc/security_tips.html#page-header
22/01/2015 22:40:55

Quelques conseils de sécurité pour Apache.

apache sé
Les drapeaux de réécriture - Serveur Apache HTTP Version 2.4 http://httpd.apache.org/docs/current/rewrite/flags.html
18/08/2014 14:44:30

Explications sur les flags entre crochets dans les fichiers .htaccess.

htaccess apache flag
21 very useful htaccess tips & tricks. htaccess tips tricks http://viralpatel.net/blogs/21-very-useful-htaccess-tips-tricks/
18/08/2014 14:40:35

Quelques tips sur les fichiers .htaccess.

htaccess apache
3869 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn