Radek Krejci | 5350b78 | 2012-07-23 16:24:28 +0200 | [diff] [blame^] | 1 | How To Setup Apache Server |
| 2 | -------------------------- |
| 3 | - mod_netconf compilation requires apache2-devel package. |
| 4 | |
| 5 | - run following commands in this directory |
| 6 | $ make |
| 7 | # make install |
| 8 | |
| 9 | - Add following lines into the (appropriate parts of the ) Apache configuration: |
| 10 | LoadModule netconf_module /usr/lib64/apache2/mod_netconf.so |
| 11 | <Location /netconf> |
| 12 | SetHandler netconf |
| 13 | </Location> |
| 14 | |
| 15 | - copy index.php and login.php into Apache DocumentRoot. |
| 16 | - create empty directory 'netconf' in Apache DocumentRoot |
| 17 | - open index.php in the browser and follow instructions |