-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lots of clean-up: scim/tomee working; setuid added for Tomcat and Shibd;
- Loading branch information
John Gasper
committed
Dec 30, 2017
1 parent
adf18f2
commit 73c6f21
Showing
38 changed files
with
352 additions
and
73 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| .git/ | ||
| test-compose/ | ||
| *.md | ||
| manualBuild.sh | ||
| manualBuild.sh | ||
| LICENSE |
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 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 @@ | ||
| <Context docBase="/opt/grouper/grouper.scim/" path="/grouper-ws-scim" reloadable="false"> | ||
| <!-- Allow our symlinks to work--> | ||
| <Resources allowLinking="true" /> | ||
| </Context> | ||
|
|
||
|
|
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,4 +1,4 @@ | ||
| <Context docBase="/opt/grouper/grouper.ws/dist/grouper-ws/" path="/grouper-ws" reloadable="false"> | ||
| <Context docBase="/opt/grouper/grouper.ws/" path="/grouper-ws" reloadable="false"> | ||
| <!-- Allow our symlinks to work--> | ||
| <Resources allowLinking="true" /> | ||
| </Context> |
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,4 +1,4 @@ | ||
| <Context docBase="/opt/grouper/grouper.ui/dist/grouper/" path="/grouper" reloadable="false"> | ||
| <Context docBase="/opt/grouper/grouper.ui/" path="/grouper" reloadable="false"> | ||
| <!-- Allow our symlinks to work--> | ||
| <Resources allowLinking="true" /> | ||
| </Context> |
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,31 @@ | ||
| [supervisord] | ||
| logfile=/dev/fd/1 ; supervisord log file | ||
| logfile_maxbytes=0 ; maximum size of logfile before rotation | ||
| loglevel=error ; info, debug, warn, trace | ||
| nodaemon=true ; run supervisord as a daemon | ||
| user=root ; default user | ||
|
|
||
| [rpcinterface:supervisor] | ||
| supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface | ||
|
|
||
| [supervisorctl] | ||
| serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket | ||
|
|
||
| ; Our processes | ||
| ; writing output to stdout (1) and err (2) (for Docker logging) and disabling log rotation | ||
|
|
||
| [program:httpd] | ||
| command=httpd -DFOREGROUND | ||
| stderr_logfile = /dev/fd/2 | ||
| stderr_logfile_maxbytes=0 | ||
| stdout_logfile = /dev/fd/1 | ||
| stdout_logfile_maxbytes=0 | ||
|
|
||
| [program:tomee] | ||
| user=tomcat | ||
| command=/opt/tomee/bin/catalina.sh run | ||
| stderr_logfile = /dev/fd/2 | ||
| stderr_logfile_maxbytes=0 | ||
| stdout_logfile = /dev/fd/1 | ||
| stdout_logfile_maxbytes=0 | ||
|
|
File renamed without changes.
Oops, something went wrong.