Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tom Niget
slapos
Commits
bebaa859
Commit
bebaa859
authored
Jan 27, 2025
by
Tom Niget
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete unused nginx conf
parent
1a738c02
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
45 deletions
+0
-45
software/mail-server/nginx.jinja2.conf
software/mail-server/nginx.jinja2.conf
+0
-45
No files found.
software/mail-server/nginx.jinja2.conf
deleted
100644 → 0
View file @
1a738c02
http
{
default_type
application
/
octet
-
stream
;
access_log
{{
parameter_dict
[
'access-log'
] }}
combined
;
client_max_body_size
10
M
;
map
$
http_upgrade
$
connection_upgrade
{
default
upgrade
;
''
close
;
}
server
{
listen
[{{
parameter_dict
[
'ipv6'
] }}]:{{
parameter_dict
[
'ssl-port'
] }}
ssl
;
server_name
_
;
ssl_certificate
{{
parameter_dict
[
'ssl-certificate'
] }};
ssl_certificate_key
{{
parameter_dict
[
'ssl-key'
] }};
ssl_protocols
TLSv1
TLSv1
.
1
TLSv1
.
2
;
ssl_ciphers
ECDH
+
AESGCM
:
DH
+
AESGCM
:
ECDH
+
AES256
:
DH
+
AES256
:
ECDH
+
AES128
:
DH
+
AES
:
ECDH
+
3
DES
:
DH
+
3
DES
:
RSA
+
AESGCM
:
RSA
+
AES
:
RSA
+
3
DES
:
HIGH
:!
aNULL
:!
MD5
;
ssl_prefer_server_ciphers
on
;
keepalive_timeout
90
s
;
location
/ {
proxy_redirect
off
;
proxy_set_header
X
-
Forwarded
-
Proto
$
scheme
;
proxy_set_header
X
-
Forwarded
-
For
$
proxy_add_x_forwarded_for
;
proxy_set_header
X
-
Forwarded
-
Host
$
http_host
;
proxy_connect_timeout
200
;
proxy_pass
{{
parameter_dict
[
'repman-secure-url'
] }};
}
}
server
{
listen
[{{
parameter_dict
[
'ipv6'
] }}]:{{
parameter_dict
[
'port'
] }};
server_name
_
;
location
/ {
proxy_redirect
off
;
proxy_set_header
X
-
Forwarded
-
Proto
$
scheme
;
proxy_set_header
X
-
Forwarded
-
For
$
proxy_add_x_forwarded_for
;
proxy_set_header
X
-
Forwarded
-
Host
$
http_host
;
proxy_connect_timeout
200
;
proxy_pass
{{
parameter_dict
[
'repman-url'
] }};
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment