-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from beepnl/webpack
Release v2.1 - Collaboration groups
- Loading branch information
Showing
1,271 changed files
with
102,631 additions
and
4,283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<VirtualHost *:80> | ||
ServerName api.beep.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
Include "/opt/bitnami/apps/BEEP/apache/portal.conf" | ||
</VirtualHost> | ||
|
||
# Legacy measurement data endpoint for VPS1 server | ||
<VirtualHost *:80> | ||
ServerName bee.iconize.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
|
||
RewriteEngine On | ||
RewriteCond %{THE_REQUEST} !^(POST).*(api) | ||
RewriteRule ^ - [L,R=404] | ||
|
||
Include "/opt/bitnami/apps/BEEP/apache/portal.conf" | ||
</VirtualHost> | ||
|
||
Listen 443 | ||
SSLProtocol all -SSLv2 -SSLv3 | ||
SSLHonorCipherOrder on | ||
SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH !aNULL !eNULL !LOW !3DES !MD5 !EXP !PSK !SRP !DSS !EDH !RC4" | ||
SSLPassPhraseDialog builtin | ||
SSLSessionCache "shmcb:/opt/bitnami/apache2/logs/ssl_scache(512000)" | ||
SSLSessionCacheTimeout 300 | ||
|
||
<VirtualHost *:443> | ||
ServerName api.beep.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
|
||
SSLEngine on | ||
SSLCertificateFile "/opt/bitnami/apache2/conf/api.beep.nl.crt" | ||
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/api.beep.nl.key" | ||
|
||
Include "/opt/bitnami/apps/BEEP/apache/portal.conf" | ||
</VirtualHost> | ||
|
||
# Legacy measurement data endpoint for VPS1 server | ||
<VirtualHost *:443> | ||
ServerName bee.iconize.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
|
||
RewriteEngine On | ||
RewriteCond %{THE_REQUEST} !^(POST).*(api) | ||
RewriteRule ^ - [L,R=404] | ||
|
||
SSLEngine on | ||
SSLCertificateFile "/opt/bitnami/apache2/conf/bee_iconize_nl_bundle.crt" | ||
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/bee_iconize_nl.key" | ||
|
||
Include "/opt/bitnami/apps/BEEP/apache/portal.conf" | ||
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Directory "/opt/bitnami/apps/BEEP/public/"> | ||
|
||
Options +FollowSymlinks -Indexes -MultiViews | ||
|
||
# Enable .htaccess files to override directives by AllowOverride All | ||
AllowOverride All | ||
|
||
<IfVersion < 2.3 > | ||
Order allow,deny | ||
Allow from all | ||
</IfVersion> | ||
|
||
<IfVersion >= 2.3> | ||
Require all granted | ||
</IfVersion> | ||
|
||
</Directory> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<VirtualHost *:80> | ||
ServerName app.beep.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
Include "/opt/bitnami/apps/BEEP/apache/webapp.conf" | ||
</VirtualHost> | ||
|
||
<VirtualHost *:443> | ||
ServerName app.beep.nl | ||
DocumentRoot "/opt/bitnami/apps/BEEP/public" | ||
|
||
// Redirects the Angular app to the web route | ||
Redirect "/index.html" "/webapp" | ||
|
||
#RewriteEngine On | ||
#RewriteRule "^/index\.html(.*)$" "/webapp$1" [PT] | ||
|
||
SSLEngine on | ||
SSLCertificateFile "/opt/bitnami/apache2/conf/app.beep.nl.crt" | ||
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/app.beep.nl.key" | ||
|
||
Include "/opt/bitnami/apps/BEEP/apache/webapp.conf" | ||
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Directory "/opt/bitnami/apps/BEEP/public/"> | ||
|
||
#Options +MultiViews | ||
#AllowOverride None | ||
|
||
Options +FollowSymlinks -Indexes -MultiViews | ||
|
||
# Enable .htaccess files to override directives by AllowOverride All | ||
AllowOverride All | ||
|
||
<IfVersion < 2.3 > | ||
Order allow,deny | ||
Allow from all | ||
</IfVersion> | ||
|
||
<IfVersion >= 2.3> | ||
Require all granted | ||
</IfVersion> | ||
|
||
</Directory> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.