1398 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
page 1 / 1
12 results tagged apache x
  • thumbnail
    How To Secure Apache with mod_md Let’s Encrypt on Ubuntu 20.04 LTS

    Explains how to install and configure Apache with a mod_md module to secure traffic with Let's Encrypt free TLS/SSL certificate on Ubuntu 20.04 LTS Linux.

    September 7, 2020 at 9:53:38 AM UTC - permalink -
    QRCode
    - https://www.cyberciti.biz/faq/how-to-secure-apache-with-mod_md-lets-encrypt-on-ubuntu-20-04-lts/amp/?__twitter_impression=true
    apache certbot lets-encrypt mod_md ssl tls
  • Apache Rewrites History: Why is it Named “Apache”?
    May 3, 2020 at 6:30:28 AM UTC - permalink -
    QRCode
    - http://xahlee.info/UnixResource_dir/open_source_rewrite_history.html
    apache cultural-apropriation fight history
  • Mozilla SSL Configuration Generator

    An easy-to-use secure configuration generator for web, database, and mail software

    July 3, 2019 at 11:22:26 PM UTC - permalink -
    QRCode
    - https://ssl-config.mozilla.org/#server=apache&server-version=2.4.39&config=intermediate
    Apache configuration database Nginx SSL
  • thumbnail
    node.js - How to deploy nodejs app on php/apache server? - Stack Overflow
    <VirtualHost example.com:*>
      ProxyPreserveHost On
    
      ProxyPass /api http://localhost:3000/
      ProxyPassReverse /api http://localhost:3000/
    
      ServerName localhost
    </VirtualHost>
    May 14, 2017 at 10:18:02 PM UTC - permalink -
    QRCode
    - http://stackoverflow.com/questions/32605232/how-to-deploy-nodejs-app-on-php-apache-server
    apache lighttpd nginx node.js
  • Deploying your NodeJS app with an Apache Proxy

    One of the things that really got me on board with NodeJS was the idea that I didn’t need a host container for it. Building a web app just means including a library that listens for HTTP requests on a port and respond. No more Apache! One less thing to worry about that isn’t my app!

    And then it starts getting complicated.

    For a start, port 80 is a privileged port, so when you try to launch the app to test or develop on your own machine you need to do so with sudo. That’s a little annoying, but you could default to port 80 & allow an override. But now you are adding more code to workaround it.

    And what about SSL? If you are going to use SSL in production (and you should) then your code is going to have to know about that too and read the certs and set that up. And that’s even more annoying for development, anyone working on your code is going to have to create their own certs just to launch your app. Unless you code in more workarounds.

    So that’s a suddenly a lot of code you are maintaining which might create its own problems.

    The alternative … use a webserver as a proxy for your app in production. It doesn’t have to be Apache, you could use Nginx for example. I use Apache because I’m reasonably familiar with it.

    May 11, 2017 at 4:44:01 PM UTC - permalink -
    QRCode
    - http://shinysparkly.com/blog/2015/05/31/node-in-apache/
    apache express httpd https nodejs proxies tls vhosts
  • RedirectSSL - Httpd Wiki

    Let's say you want http://www.example.com/secure/ to always be sent over SSL (I presume here that both the normal and the SSL vhost have the same content). You could do this by linking to the correct page from within your HTML pages... but there will always be some user who will sneak by it that way.

    NameVirtualHost *:80
    <VirtualHost *:80>
       ServerName www.example.com
       Redirect permanent / https://secure.example.com/
    </VirtualHost>
    
    <VirtualHost _default_:443>
       ServerName secure.example.com
       DocumentRoot /usr/local/apache2/htdocs
       SSLEngine On
       # etc...
    </VirtualHost>
    February 2, 2017 at 4:58:25 PM UTC * - permalink -
    QRCode
    - https://wiki.apache.org/httpd/RedirectSSL
    apache configuration redirect ssl sysadmin tls
  • RewriteHTTPToHTTPS - Httpd Wiki

    You want to force people coming to your site to use HTTPS. Either for the entire site or a small sub-section of it.

    RewriteEngine On
    # This will enable the Rewrite capabilities
    
    RewriteCond %{HTTPS} !=on
    # This checks to make sure the connection is not already HTTPS
    
    RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
    # This rule will redirect users from their original location, to the same location but using HTTPS.
    # i.e.  http://www.example.com/foo/ to https://www.example.com/foo/
    # The leading slash is made optional so that this will work either in httpd.conf
    # or .htaccess context
    February 2, 2017 at 4:56:37 PM UTC - permalink -
    QRCode
    - https://wiki.apache.org/httpd/RewriteHTTPToHTTPS
    apache lets-encrypt redirection ssl tls
  • MediaWiki - ArchWiki
    August 12, 2016 at 4:46:51 PM UTC - permalink -
    QRCode
    - https://wiki.archlinux.org/index.php/MediaWiki
    apache configuration mediawiki sysadmin
  • Apache HTTP Server - ArchWiki
    August 12, 2016 at 4:46:23 PM UTC - permalink -
    QRCode
    - https://wiki.archlinux.org/index.php/Apache_HTTP_Server#TLS.2FSSL
    apache archlinux ssl tls
  • Apache configuration - MediaWiki
    August 12, 2016 at 4:45:33 PM UTC - permalink -
    QRCode
    - https://www.mediawiki.org/wiki/Apache_configuration
    apache configuration mediawiki sysadmin
  • ExampleVhosts - Httpd Wiki
    August 12, 2016 at 4:44:41 PM UTC - permalink -
    QRCode
    - https://wiki.apache.org/httpd/ExampleVhosts
    apache examples vhosts virtual-hosts
  • mod_rewrite - Serveur Apache HTTP Version 2.4

    Le module mod_rewrite utilise un moteur de réécriture à base de règles, basé sur un interpréteur d'expressions rationnelles PCRE, pour réécrire les URLs à la volée. Par défaut, mod_rewrite met en correspondance une URL avec le système de fichiers. Cependant, on peut aussi l'utiliser pour rediriger une URL vers une autre URL, ou pour invoquer une requête interne à destination du mandataire.

    mod_rewrite fournit une méthode souple et puissante pour manipuler les URLs en utilisant un nombre illimité de règles. Chaque règle peut être associée à un nombre illimité de conditions, afin de vous permettre de réécrire les URLs en fonction de variables du serveur, de variables d'environnement, d'en-têtes HTTP, ou de repères temporels.

    mod_rewrite agit sur la totalité de l'URL, y compris la partie chemin. Une règle de réécriture peut être invoquée dans httpd.conf ou dans un fichier .htaccess. Le chemin généré par une règle de réécriture peut inclure une chaîne de paramètres, ou peut renvoyer vers un traitement secondaire interne, une redirection vers une requête externe ou vers le mandataire interne.

    August 9, 2016 at 4:54:18 PM UTC - permalink -
    QRCode
    - https://httpd.apache.org/docs/current/mod/mod_rewrite.html
    apache configuration mod_rewrite server sysadmin url-rewriting
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation