16 lines
235 B
Plaintext
16 lines
235 B
Plaintext
|
|
|
|
server {
|
|
listen 80;
|
|
server_name mailman.creditcards.bayern;
|
|
|
|
location / {
|
|
# First attempt to serve request as file, then
|
|
|
|
uwsgi_pass mailman-web:8080;
|
|
include uwsgi_params;
|
|
uwsgi_read_timeout 300;
|
|
}
|
|
}
|
|
|