Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add MailHog for capturing outgoing emails
Showing
5 changed files
with
144 additions
and
95 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# MailHog | ||
# | ||
# Application UI runs on port 8025. Reverse proxy so it can be accessed on the normal web ports | ||
|
||
ProxyPass /mail http://localhost:8025/mail | ||
ProxyPassReverse /mail http://localhost:8025/mail |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,103 +1,122 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<title>GTE jump page</title> | ||
<style> | ||
#myTable { | ||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | ||
border-collapse: collapse; | ||
width: 100%; | ||
} | ||
<title>GTE jump page</title> | ||
<style> | ||
#myTable { | ||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | ||
border-collapse: collapse; | ||
width: 100%; | ||
} | ||
|
||
#myTable td, #myTable th { | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
} | ||
#myTable td, | ||
#myTable th { | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
} | ||
|
||
#myTable tr:nth-child(even){background-color: #f2f2f2;} | ||
#myTable tr:nth-child(even) { | ||
background-color: #f2f2f2; | ||
} | ||
|
||
#myTable tr:hover {background-color: #ddd;} | ||
#myTable tr:hover { | ||
background-color: #ddd; | ||
} | ||
|
||
#myTable th { | ||
padding-top: 12px; | ||
padding-bottom: 12px; | ||
text-align: left; | ||
background-color: #4CAF50; | ||
color: white; | ||
} | ||
</style> | ||
#myTable th { | ||
padding-top: 12px; | ||
padding-bottom: 12px; | ||
text-align: left; | ||
background-color: #4CAF50; | ||
color: white; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<h1>GTE jump page</h1> | ||
<br /><br /> | ||
<table id="myTable"> | ||
<tr> | ||
<th>Name</th> | ||
<th>Link</th> | ||
<th>Description</th> | ||
<th>Credentials</th> | ||
</tr> | ||
<tr> | ||
<td><a href="/grouper/">Grouper</a></td> | ||
<td>https://localhost:8443/grouper/</td> | ||
<td>Grouper UI application</td> | ||
<td>Admin: banderson / password<br/> | ||
Civilian: jsmith / password</td> | ||
</tr> | ||
<tr> | ||
<td><a href="/phpmyadmin/">Database manager</a></td> | ||
<td>https://localhost:8443/phpmyadmin/</td> | ||
<td>Phpmyadmin Mysql database manager</td> | ||
<td>root / <no password></td> | ||
</tr> | ||
<tr> | ||
<td><a href="/phpldapadmin/">LDAP manager</a></td> | ||
<td>https://localhost:8443/phpldapadmin/</td> | ||
<td>Phpldapadmin LDAP administration</td> | ||
<td>username: cn=root,dc=internet2,dc=edu<br />password: password</td> | ||
</tr> | ||
<tr> | ||
<td><a href="/app">Shibboleth attributes app</a></td> | ||
<td>https://localhost:8443/app</td> | ||
<td>Simple Shibboleth-protected application to show login state</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Training+Environment">Grouper training wiki</a></td> | ||
<td></td> | ||
<td>Links to everything you need for the training. Check Slack "pins" also.</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/GTE+commands">GTE commands</a></td> | ||
<td></td> | ||
<td>Commands that will start courses, shell into containers, etc</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Training+Environment+-+text+to+copy+and+paste">Text to copy/paste</a></td> | ||
<td></td> | ||
<td>Commands and configuration to copy and paste from slides for exercises</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Deployment+Guide">Grouper Deployment Guide</a></td> | ||
<td></td> | ||
<td>Grouper concepts, standards, and best practices</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://kahoot.it/">Kahoot</a></td> | ||
<td></td> | ||
<td>Online quiz site</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="orgchart/org_chart_brief.svg">Org chart brief</a> | <a href="orgchart/org_chart_full.svg">Org chart full</a></td> | ||
<td></td> | ||
<td>Departmental org charts used in the example database</td> | ||
<td></td> | ||
</tr> | ||
</table> | ||
<h1>GTE jump page</h1> | ||
<br /><br /> | ||
<table id="myTable"> | ||
<tr> | ||
<th>Name</th> | ||
<th>Link</th> | ||
<th>Description</th> | ||
<th>Credentials</th> | ||
</tr> | ||
<tr> | ||
<td><a href="/grouper/">Grouper</a></td> | ||
<td>https://localhost:8443/grouper/</td> | ||
<td>Grouper UI application</td> | ||
<td>Admin: banderson / password<br /> | ||
Civilian: jsmith / password</td> | ||
</tr> | ||
<tr> | ||
<td><a href="/phpmyadmin/">Database manager</a></td> | ||
<td>https://localhost:8443/phpmyadmin/</td> | ||
<td>Phpmyadmin Mysql database manager</td> | ||
<td>root / <no password></td> | ||
</tr> | ||
<tr> | ||
<td><a href="/phpldapadmin/">LDAP manager</a></td> | ||
<td>https://localhost:8443/phpldapadmin/</td> | ||
<td>Phpldapadmin LDAP administration</td> | ||
<td>username: cn=root,dc=internet2,dc=edu<br />password: password</td> | ||
</tr> | ||
<tr> | ||
<td><a href="/mail/">Mail server</a></td> | ||
<td>https://localhost:8443/mail/</td> | ||
<td>MailHog email testing tool</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="/app">Shibboleth attributes app</a></td> | ||
<td>https://localhost:8443/app</td> | ||
<td>Simple Shibboleth-protected application to show login state</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Training+Environment">Grouper training | ||
wiki</a></td> | ||
<td></td> | ||
<td>Links to everything you need for the training. Check Slack "pins" also.</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/GTE+commands">GTE commands</a></td> | ||
<td></td> | ||
<td>Commands that will start courses, shell into containers, etc</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a | ||
href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Training+Environment+-+text+to+copy+and+paste">Text | ||
to copy/paste</a></td> | ||
<td></td> | ||
<td>Commands and configuration to copy and paste from slides for exercises</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://spaces.at.internet2.edu/display/Grouper/Grouper+Deployment+Guide">Grouper Deployment | ||
Guide</a></td> | ||
<td></td> | ||
<td>Grouper concepts, standards, and best practices</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="https://kahoot.it/">Kahoot</a></td> | ||
<td></td> | ||
<td>Online quiz site</td> | ||
<td></td> | ||
</tr> | ||
<tr> | ||
<td><a href="orgchart/org_chart_brief.svg">Org chart brief</a> | <a href="orgchart/org_chart_full.svg">Org chart | ||
full</a></td> | ||
<td></td> | ||
<td>Departmental org charts used in the example database</td> | ||
<td></td> | ||
</tr> | ||
</table> | ||
</body> | ||
|
||
</html> |
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