Search Results
Search type | Search syntax |
---|---|
Tags | [tag] |
Exact | "words here" |
Author |
user:1234 user:me (yours) |
Score |
score:3 (3+) score:0 (none) |
Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
Views | views:250 |
Code | code:"if (foo != bar)" |
Sections |
title:apples body:"apples oranges" |
URL | url:"*.example.com" |
Saves | in:saves |
Status |
closed:yes duplicate:no migrated:no wiki:no |
Types |
is:question is:answer |
Exclude |
-[tag] -apples |
For more details on advanced search visit our help page |
Nginx ("eNgine x") is a lightweight, high-performance HTTP server, reverse proxy, TCP stream proxy and mail proxy, released under a BSD-like license.
1
vote
Nginx strapi increase upload body size for /upload/
server {
# Listen HTTP
listen 80;
server_name myapi.tld;
access_log /var/log/nginx/myapi/myapi.log;
error_log /var/log/nginx/myapi/myapi.error.log;
# Redirect HTTP to HTTPS …
0
votes
recv() failed (104: Unknown error) while proxying upgraded connection in nginx
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
server {
listen 80;
listen 443 ssl;
server_name printing.domain.info;
ssl_certificate /etc/nginx/ssl/star.domain.info.crt … /html;
}
access_log /var/log/nginx/printing.domain.info-access.log;
error_log /var/log/nginx/printing.domain.info-error.log;
} …