~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/inets/test/httpd_test_data/server_root/conf/ssl.conf

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Port 8088
 
2
#ServerName your.server.net
 
3
SocketType ssl
 
4
Modules mod_alias mod_auth mod_esi mod_actions mod_cgi mod_include mod_dir mod_get mod_head mod_log mod_disk_log
 
5
ServerAdmin jocke@erix.ericsson.se
 
6
ServerRoot /var/tmp/server_root
 
7
ErrorLog logs/error_log_8088
 
8
TransferLog logs/access_log_8088
 
9
ErrorDiskLog logs/error_disk_log_8088
 
10
ErrorDiskLogSize 200000 10
 
11
TransferDiskLog logs/access_disk_log_8088
 
12
TransferDiskLogSize 200000 10
 
13
MaxClients 150
 
14
DocumentRoot /var/tmp/server_root/htdocs
 
15
DirectoryIndex index.html welcome.html
 
16
DefaultType text/plain
 
17
Alias /icons/ /var/tmp/server_root/icons/
 
18
Alias /pics/ /var/tmp/server_root/icons/
 
19
ScriptAlias /cgi-bin/ /var/tmp/server_root/cgi-bin/
 
20
ScriptAlias /htbin/ /var/tmp/server_root/cgi-bin/
 
21
ErlScriptAlias /cgi-bin/erl httpd_example io
 
22
EvalScriptAlias /eval httpd_example io
 
23
SSLCertificateFile /var/tmp/server_root/ssl/ssl_server.pem
 
24
SSLCertificateKeyFile /var/tmp/server_root/ssl/ssl_server.pem
 
25
SSLVerifyClient 0
 
26
#Script HEAD /cgi-bin/printenv.sh
 
27
#Action image/gif /cgi-bin/printenv.sh
 
28
 
 
29
<Directory /var/tmp/server_root/htdocs/open>
 
30
AuthName Open Area
 
31
AuthUserFile /var/tmp/server_root/auth/passwd
 
32
AuthGroupFile /var/tmp/server_root/auth/group
 
33
require user one Aladdin
 
34
</Directory>
 
35
 
 
36
<Directory /var/tmp/server_root/htdocs/secret>
 
37
AuthName Secret Area
 
38
AuthUserFile /var/tmp/server_root/auth/passwd
 
39
AuthGroupFile /var/tmp/server_root/auth/group
 
40
require group group1 group2
 
41
</Directory>
 
42
 
 
43
<Directory /var/tmp/server_root/htdocs/secret/top_secret>
 
44
AuthName Top Secret Area
 
45
AuthUserFile /var/tmp/server_root/auth/passwd
 
46
AuthGroupFile /var/tmp/server_root/auth/group
 
47
require group group3
 
48
</Directory>
 
49
 
 
50
<Directory /var/tmp/server_root/htdocs/mnesia_open>
 
51
AuthName Open Area
 
52
AuthMnesiaDB On
 
53
require user one Aladdin
 
54
</Directory>
 
55
 
 
56
<Directory /var/tmp/server_root/htdocs/mnesia_secret>
 
57
AuthName Secret Area
 
58
AuthMnesiaDB On
 
59
require group group1 group2
 
60
</Directory>
 
61
 
 
62
<Directory /var/tmp/server_root/htdocs/mnesia_secret/top_secret>
 
63
AuthName Top Secret Area
 
64
AuthMnesiaDB On
 
65
require group group3
 
66
</Directory>