14 lines
164 B
Plaintext
14 lines
164 B
Plaintext
server {
|
|
listen 80;
|
|
server_name resume.shockrah.xyz;
|
|
root /opt/nginx/resume.shockrah.xyz;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|
|
|
|
|
|
|