Skip to content

Commit 4e923ac

Browse files
committed
aguia-pescadora-bravo (#16), objetivos-aguia-pescadora (#21)
1 parent 410530a commit 4e923ac

File tree

2 files changed

+128
-0
lines changed

2 files changed

+128
-0
lines changed
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
user www-data;
2+
worker_processes auto;
3+
pid /run/nginx.pid;
4+
include /etc/nginx/modules-enabled/*.conf;
5+
6+
events {
7+
worker_connections 768;
8+
# multi_accept on;
9+
}
10+
11+
http {
12+
13+
##
14+
# Basic Settings
15+
##
16+
17+
sendfile on;
18+
tcp_nopush on;
19+
tcp_nodelay on;
20+
keepalive_timeout 65;
21+
types_hash_max_size 2048;
22+
# server_tokens off;
23+
24+
# server_names_hash_bucket_size 64;
25+
# server_name_in_redirect off;
26+
27+
include /etc/nginx/mime.types;
28+
default_type application/octet-stream;
29+
30+
##
31+
# SSL Settings
32+
##
33+
34+
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
35+
ssl_prefer_server_ciphers on;
36+
37+
##
38+
# Logging Settings
39+
##
40+
41+
access_log /var/log/nginx/access.log;
42+
error_log /var/log/nginx/error.log;
43+
44+
##
45+
# Gzip Settings
46+
##
47+
48+
gzip on;
49+
50+
# gzip_vary on;
51+
# gzip_proxied any;
52+
# gzip_comp_level 6;
53+
# gzip_buffers 16 8k;
54+
# gzip_http_version 1.1;
55+
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
56+
57+
##
58+
# Virtual Host Configs
59+
##
60+
61+
include /etc/nginx/conf.d/*.conf;
62+
include /etc/nginx/sites-enabled/*;
63+
}
64+
65+
66+
#mail {
67+
# # See sample authentication script at:
68+
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
69+
#
70+
# # auth_http localhost/auth.php;
71+
# # pop3_capabilities "TOP" "USER";
72+
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
73+
#
74+
# server {
75+
# listen localhost:110;
76+
# protocol pop3;
77+
# proxy on;
78+
# }
79+
#
80+
# server {
81+
# listen localhost:143;
82+
# protocol imap;
83+
# proxy on;
84+
# }
85+
#}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!doctype html>
2+
<html lang=pt>
3+
<head>
4+
<meta charset=utf-8>
5+
<title>aguia-pescadora-bravo.etica.ai</title>
6+
<style>
7+
body {
8+
width: 35em;
9+
margin: 0 auto;
10+
font-family: Tahoma, Verdana, Arial, sans-serif;
11+
}
12+
</style>
13+
</head>
14+
<body>
15+
<h1>Servidor comunitário <br>aguia-pescadora-bravo.etica.ai</h1>
16+
<h2>O que é este servidor?</h2>
17+
<p>
18+
Veja <a href="https://github.com/fititnt/cplp-aiops/issues/16">cplp-aiops#16</a>.
19+
</p>
20+
<h3>Diario de bordo</h3>
21+
<!--
22+
<p>
23+
Este é um
24+
</p>
25+
-->
26+
<p>
27+
Veja <a href="https://github.com/fititnt/cplp-aiops/blob/master/logbook/aguia-pescadora-bravo.sh">logbook/aguia-pescadora-bravo.sh</a>.
28+
</p>
29+
<h2>Requisitar novas funcionalidades</h2>
30+
<p>
31+
Veja <a href="https://github.com/fititnt/cplp-aiops/issues?q=label%3Aserver-aguia-pescadora">cplp-aiops/issues?q=label:server-aguia-pescadora</a>.
32+
</p>
33+
<hr>
34+
<h2 id="report">Abuse Contact</h2>
35+
<p>
36+
If you have complaints about requests from this IP or content served by
37+
pages hosted here, please report immediately to <strong>Emerson Rocha
38+
</strong> e-mail <em><strong>rocha(at)ieee.org</strong></em>. Please
39+
guive extra details, like at least exact timestamp of request
40+
or screenshots of a webpages.
41+
</p>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)