mirror of
https://github.com/olegvodyanov/instalinks.git
synced 2025-12-20 04:37:04 +03:00
14 lines
277 B
Plaintext
14 lines
277 B
Plaintext
server {
|
|
listen 80;
|
|
server_name instalinks.ru;
|
|
|
|
location = /favicon.ico { access_log off; log_not_found off; }
|
|
location /static/ {
|
|
root /home/youruser/myproject;
|
|
}
|
|
|
|
location / {
|
|
include proxy_params;
|
|
proxy_pass http://<>;
|
|
}
|
|
} |