Skip to content

Instantly share code, notes, and snippets.

@codazoda
Last active October 22, 2022 21:46
Show Gist options
  • Save codazoda/baf0ed5d81c16204835c00d37f429aab to your computer and use it in GitHub Desktop.
Save codazoda/baf0ed5d81c16204835c00d37f429aab to your computer and use it in GitHub Desktop.
Nginx Config
user nginx;
worker_processes auto;
daemon off;
events {
worker_connections 1024;
}
http {
server {
listen 8080;
server_name localhost;
location / {
#proxy_pass 127.0.0.1:8001;
#fastcgi_pass 127.0.0.1:8001;
fastcgi_pass host.docker.internal:8001;
fastcgi_index index.php;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment