mirror of
https://github.com/Encryptshell/Pritunl-API-crack.git
synced 2025-11-29 16:43:09 +00:00
* Moved files around for better consistency * Simplified docker file for use * Added a arg to the server/setup.py script for more flexibility * Improved the current docker build and compose for the fully patched pritunl.
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
worker_processes auto;
|
|
error_log stderr warn;
|
|
pid /run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 64;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
# Define custom log format to include reponse times
|
|
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
|
'$status $body_bytes_sent "$http_referer" '
|
|
'"$http_user_agent" "$http_x_forwarded_for" '
|
|
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
|
|
|
access_log /dev/stdout main_timed;
|
|
error_log /dev/stderr notice;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
# Write temporary files to /tmp so they can be created as a non-privileged user
|
|
client_body_temp_path /tmp/client_temp;
|
|
proxy_temp_path /tmp/proxy_temp_path;
|
|
fastcgi_temp_path /tmp/fastcgi_temp;
|
|
uwsgi_temp_path /tmp/uwsgi_temp;
|
|
scgi_temp_path /tmp/scgi_temp;
|
|
|
|
# Hardening
|
|
proxy_hide_header X-Powered-By;
|
|
fastcgi_hide_header X-Powered-By;
|
|
server_tokens off;
|
|
|
|
gzip on;
|
|
gzip_proxied any;
|
|
gzip_types text/plain application/xml text/css text/js text/xml application/x-javascript text/javascript application/json application/xml+rss;
|
|
gzip_vary on;
|
|
gzip_disable "msie6";
|
|
|
|
# Include other server configs
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|