-
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Use alovoa-expo as official frontend for the web #284
- Loading branch information
1 parent
7af0cde
commit 8ff8757
Showing
110 changed files
with
1,139 additions
and
9,799 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
scripts/root/etc/apache2/sites-available/app.alovoa.com.conf
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,30 @@ | ||
<VirtualHost *:80> | ||
ServerName app.alovoa.com | ||
Redirect permanent / https://app.alovoa.com/ | ||
RewriteEngine on | ||
RewriteCond %{SERVER_NAME} =app.alovoa.com | ||
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] | ||
</VirtualHost> | ||
<VirtualHost *:80> | ||
ServerName www.app.alovoa.com | ||
Redirect permanent / https://app.alovoa.com/ | ||
RewriteEngine on | ||
RewriteCond %{SERVER_NAME} =www.app.alovoa.com | ||
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] | ||
</VirtualHost> | ||
<VirtualHost *:443> | ||
ServerName app.alovoa.com | ||
SSLEngine On | ||
SSLProxyEngine On | ||
SSLProxyVerify none | ||
SSLProxyCheckPeerCN off | ||
SSLProxyCheckPeerName off | ||
ProxyPass / https://127.0.0.1:10080/ | ||
ProxyPassReverse / https://127.0.0.1:10080/ | ||
RequestHeader set X-Forwarded-Proto https | ||
RequestHeader set X-Forwarded-Port 443 | ||
ProxyPreserveHost On | ||
Include /etc/letsencrypt/options-ssl-apache.conf | ||
SSLCertificateFile /etc/letsencrypt/live/alovoa.com/fullchain.pem | ||
SSLCertificateKeyFile /etc/letsencrypt/live/alovoa.com/privkey.pem | ||
</VirtualHost> |
30 changes: 30 additions & 0 deletions
30
scripts/root/etc/apache2/sites-available/beta.app.alovoa.com.conf
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,30 @@ | ||
<VirtualHost *:80> | ||
ServerName beta.app.alovoa.com | ||
Redirect permanent / https://beta.app.alovoa.com/ | ||
RewriteEngine on | ||
RewriteCond %{SERVER_NAME} =beta.app.alovoa.com | ||
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] | ||
</VirtualHost> | ||
<VirtualHost *:80> | ||
ServerName www.beta.app.alovoa.com | ||
Redirect permanent / https://beta.app.alovoa.com/ | ||
RewriteEngine on | ||
RewriteCond %{SERVER_NAME} =www.beta.app.alovoa.com | ||
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] | ||
</VirtualHost> | ||
<VirtualHost *:443> | ||
ServerName beta.app.alovoa.com | ||
SSLEngine On | ||
SSLProxyEngine On | ||
SSLProxyVerify none | ||
SSLProxyCheckPeerCN off | ||
SSLProxyCheckPeerName off | ||
ProxyPass / https://127.0.0.1:10081/ | ||
ProxyPassReverse / https://127.0.0.1:10081/ | ||
RequestHeader set X-Forwarded-Proto https | ||
RequestHeader set X-Forwarded-Port 443 | ||
ProxyPreserveHost On | ||
Include /etc/letsencrypt/options-ssl-apache.conf | ||
SSLCertificateFile /etc/letsencrypt/live/alovoa.com/fullchain.pem | ||
SSLCertificateKeyFile /etc/letsencrypt/live/alovoa.com/privkey.pem | ||
</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
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.