Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #user http;
- worker_processes 1;
- #error_log logs/error.log;
- #error_log logs/error.log notice;
- #error_log logs/error.log info;
- #pid logs/nginx.pid;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
- keepalive_timeout 65;
- server {
- server_name yourdomain.com www.yourdomain.com; # change to your domain name
- types_hash_max_size 2048;
- types_hash_bucket_size 64;
- location / {
- proxy_pass http://localhost:1337; # strapi server port
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment