Last active
October 22, 2022 21:46
-
-
Save codazoda/baf0ed5d81c16204835c00d37f429aab to your computer and use it in GitHub Desktop.
Nginx Config
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
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