Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 Design | 1 Design |
| 2 ====== | 2 ====== |
| 3 | 3 |
| 4 | 4 |
| 5 Overview | 5 Overview |
| 6 -------- | 6 -------- |
| 7 Allows trying out Skia code in the browser. | 7 Allows trying out Skia code in the browser. |
| 8 | 8 |
| 9 | 9 |
| 10 Security | 10 Security |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 82 jail. The application is then run in the schroot jail, writing its response, | 82 jail. The application is then run in the schroot jail, writing its response, |
| 83 <hash>.png, out into the same directory, /home/webtry/inout/, where is it read | 83 <hash>.png, out into the same directory, /home/webtry/inout/, where is it read |
| 84 by the web server and returned to the user. | 84 by the web server and returned to the user. |
| 85 | 85 |
| 86 Startup and config | 86 Startup and config |
| 87 ------------------ | 87 ------------------ |
| 88 The server is started and stopped via: | 88 The server is started and stopped via: |
| 89 | 89 |
| 90 sudo /etc/init.d/webtry [start|stop|restart] | 90 sudo /etc/init.d/webtry [start|stop|restart] |
| 91 | 91 |
| 92 By sysv init only handles starting and stopping a program once, so we use | 92 But sysv init only handles starting and stopping a program once, so we use |
|
tfarina
2014/09/22 17:18:40
Thanks.
| |
| 93 Monit to monitor the application and restart it if it crashes. The config | 93 Monit to monitor the application and restart it if it crashes. The config |
| 94 is in: | 94 is in: |
| 95 | 95 |
| 96 /etc/monit/conf.d/webtry | 96 /etc/monit/conf.d/webtry |
| 97 | 97 |
| 98 The chroot jail is implemented using schroot, its configuration | 98 The chroot jail is implemented using schroot, its configuration |
| 99 file is found in: | 99 file is found in: |
| 100 | 100 |
| 101 /etc/schroot/chroot.d/webtry | 101 /etc/schroot/chroot.d/webtry |
| 102 | 102 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 273 * clike.js - C-like syntax highlighting support | 273 * clike.js - C-like syntax highlighting support |
| 274 | 274 |
| 275 Alternatively, we may consider pulling CM as an external dependency at some | 275 Alternatively, we may consider pulling CM as an external dependency at some |
| 276 point. | 276 point. |
| 277 | 277 |
| 278 Installation | 278 Installation |
| 279 ------------ | 279 ------------ |
| 280 See the README file. | 280 See the README file. |
| 281 | 281 |
| 282 | 282 |
| OLD | NEW |