Created
October 31, 2023 16:00
-
-
Save rodrigore/b7bc41c6c7ccf402e9a3a8caf251eeab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information on configuration, see: | |
# * Official English Documentation: http://nginx.org/en/docs/ | |
# * Official Russian Documentation: http://nginx.org/ru/docs/ | |
user nginx; | |
worker_processes auto; | |
error_log /var/log/nginx/error.log; | |
pid /run/nginx.pid; | |
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. | |
include /usr/share/nginx/modules/*.conf; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
'$status $body_bytes_sent "$http_referer" ' | |
'"$http_user_agent" "$http_x_forwarded_for"'; | |
access_log /var/log/nginx/access.log main; | |
sendfile on; | |
tcp_nopush on; | |
tcp_nodelay on; | |
keepalive_timeout 65; | |
types_hash_max_size 4096; | |
include /etc/nginx/mime.types; | |
default_type application/octet-stream; | |
# Load modular configuration files from the /etc/nginx/conf.d directory. | |
# See http://nginx.org/en/docs/ngx_core_module.html#include | |
# for more information. | |
include /etc/nginx/conf.d/*.conf; | |
server { | |
listen 80; | |
listen [::]:80 ipv6only=on; | |
#server_name _; | |
root /var/www/evc/public; | |
server_tokens off; | |
add_header X-Frame-Options "SAMEORIGIN"; | |
add_header X-Content-Type-Options nosniff; | |
add_header X-XSS-Protection "1; mode=block"; | |
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; | |
client_max_body_size 800m; | |
client_header_timeout 3000; | |
client_body_timeout 3000; | |
fastcgi_read_timeout 3000; | |
fastcgi_buffers 8 128k; | |
fastcgi_buffer_size 128k; | |
# Log files for Debugging | |
access_log /var/log/nginx/evc-access.log; | |
error_log /var/log/nginx/evc-error.log; | |
index index.php index.html index.htm; | |
error_page 404 /index.php; | |
location / { | |
try_files $uri $uri/ /index.php?$query_string; | |
} | |
location ~ \.php$ { | |
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; | |
fastcgi_hide_header X-Powered-By; | |
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'; | |
#fastcgi_pass 127.0.0.1:9000; | |
#fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; | |
#fastcgi_index index.php; | |
#include fastcgi_params; | |
#add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0'; | |
} | |
location ~ /\.(?!well-known).* { | |
deny all; | |
} | |
# Load configuration files for the default server block. | |
#include /etc/nginx/default.d/*.conf; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment