Skip to content

Instantly share code, notes, and snippets.

@TeemuKoivisto
Created May 28, 2017 13:40
Show Gist options
  • Save TeemuKoivisto/d8d2cf4e265b32bc33159f3ce1ca0e43 to your computer and use it in GitHub Desktop.
Save TeemuKoivisto/d8d2cf4e265b32bc33159f3ce1ca0e43 to your computer and use it in GitHub Desktop.
users htaccess
RewriteEngine On
# tsekkaa onko polku jo turvattu eli https:n ylitse
RewriteCond %{HTTPS} !=on
# jos ei niin uudelleen ohjaa https-polkuun R=redirect L=last eli lopettaa suorittamisen tähän sääntöön
RewriteRule ^/?(.*) https://teekoivi.users.cs.helsinki.fi/$1 [R,L]
# polku on nyt https:ssä joten voimme proxata sen taustalla pyörivälle node-prosessille
RewriteRule ^api/1(.*)$ http://teekoivi.users.cs.helsinki.fi:3001/$1 [P]
RewriteRule ^/?(.*) http://teekoivi.users.cs.helsinki.fi:8080/$1 [P]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment