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